您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425
  1. # NTFSSecurity
  2. Managing permissions with PowerShell is only a bit easier than in VBS or the command line as there are no cmdlets for most day-to-day tasks like getting a permission report or adding permission to an item. PowerShell only offers Get-Acl and Set-Acl but everything in between getting and setting the ACL is missing. This module closes the gap.
  3. [Version History](https://github.com/raandree/NTFSSecurity/wiki/Version-History)
  4. ## Installation
  5. You have two options:
  6. * Download the latest release from the [releases](https://github.com/raandree/NTFSSecurity/releases) section on GitHub.
  7. * Download the module from the [PowerShell Gallery](https://www.powershellgallery.com/packages/NTFSSecurity):
  8. ```
  9. Install-Module -Name NTFSSecurity
  10. ```
  11. Further help can be found in How to install if you face difficulties getting this module installed.
  12. ## Documentation
  13. The cmdlets are yet not documented completely so Get-Help will not show help for all the cmdlets. Providing documentation is planned though.
  14. ## Additional documentation is available:
  15. [NTFSSecurity Tutorial 1 - Getting, adding and removing permissions](http://blogs.technet.com/b/fieldcoding/archive/2014/12/05/ntfssecurity-tutorial-1-getting-adding-and-removing-permissions.aspx)
  16. [NTFSSecurity Tutorial 2 - Managing NTFS Inheritance and Using Privileges](http://blogs.technet.com/b/fieldcoding/archive/2014/12/05/ntfssecurity-tutorial-2-managing-ntfs-inheritance-and-using-privileges.aspx)