Skip to content

How to install

Raimund Andée [MSFT] edited this page May 11, 2017 · 3 revisions

Download the latest version from GitHub

Download the latest release from the releases section.

Download the latest version from the PowerShell Gallery

You can look up the latest version directly from PowerShell...

Find-Module -Name NTFSSecurity

...and also install it from there

Install-Module -Name NTFSSecurity

Installation

Installing a PowerShell module means just copying the files into either

  • C:\Users<username>\Documents\WindowsPowerShell\Modules
  • C:\Program Files\WindowsPowerShell\Modules (available since version 4.0)
  • C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules

Just create the folder "NTFSSecurity" in one of the previously mentioned paths and copy the NTFSSecurity files in there.

The standard module folders are in the environment variable 'PSModulePath', which can be accessed through the following PowerShell command: $env:PSModulePath

For example, all the files in the zip file have to be in "C:\Users\raandree\Documents\WindowsPowerShell\Modules\NTFSSecurity". If you did this then the module should be listed in "Get-Module -ListAvailable" and can be imported using "Import-Module NTFSSecurity".

If you need additional information, see Installing a PowerShell Module.