PowerShell 技能连载 - 管理 NTFS 权限

由于没有内置的管理 NTFS 权限的 cmdlet,所以有越来越多的开源 PowerShell module 实现这个功能。一个有前途的 module 是由 Raimund Andree,一个德国的 Microsoft 工程师写的。他也将在即将到来的 PowerShell 欧洲会议 (www.psconf.eu) 中演讲。

如果您使用的是 PowerShell 5 或已经安装了 PowerShellGet (www.powershellgallery.com),以下是从 PowerShell Gallery 下载并安装 “NTFSSecurity” module 的方法:

1
2
3
4
5
# review module details
Find-Module -Repository PSGallery -Name NTFSSecurity | Select-Object -Property * | Out-GridView

# download module
Install-Module -Repository PSGallery -Name NTFSSecurity -Scope CurrentUser

要查看所有的新 cmdlet,请试试这段代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
PS C:\> Get-Command -Module NTFSSecurity

CommandType Name Version

----------- ---- -------
Cmdlet Add-NTFSAccess 4.2.3
Cmdlet Add-NTFSAudit 4.2.3
Cmdlet Clear-NTFSAccess 4.2.3
Cmdlet Clear-NTFSAudit 4.2.3
Cmdlet Copy-Item2 4.2.3
Cmdlet Disable-NTFSAccessInheritance 4.2.3
Cmdlet Disable-NTFSAuditInheritance 4.2.3
Cmdlet Disable-Privileges 4.2.3
Cmdlet Enable-NTFSAccessInheritance 4.2.3
Cmdlet Enable-NTFSAuditInheritance 4.2.3
Cmdlet Enable-Privileges 4.2.3
Cmdlet Get-ChildItem2 4.2.3
Cmdlet Get-DiskSpace 4.2.3
Cmdlet Get-FileHash2 4.2.3
Cmdlet Get-Item2 4.2.3
Cmdlet Get-NTFSAccess 4.2.3
Cmdlet Get-NTFSAudit 4.2.3
Cmdlet Get-NTFSEffectiveAccess 4.2.3
Cmdlet Get-NTFSHardLink 4.2.3
Cmdlet Get-NTFSInheritance 4.2.3
Cmdlet Get-NTFSOrphanedAccess 4.2.3
Cmdlet Get-NTFSOrphanedAudit 4.2.3
Cmdlet Get-NTFSOwner 4.2.3
Cmdlet Get-NTFSSecurityDescriptor 4.2.3
Cmdlet Get-NTFSSimpleAccess 4.2.3
Cmdlet Get-Privileges 4.2.3
Cmdlet Move-Item2 4.2.3
Cmdlet New-NTFSHardLink 4.2.3
Cmdlet New-NTFSSymbolicLink 4.2.3
Cmdlet Remove-Item2 4.2.3
Cmdlet Remove-NTFSAccess 4.2.3
Cmdlet Remove-NTFSAudit 4.2.3
Cmdlet Set-NTFSInheritance 4.2.3
Cmdlet Set-NTFSOwner 4.2.3
Cmdlet Set-NTFSSecurityDescriptor 4.2.3
Cmdlet Test-Path2 4.2.3

当您获取到这些 cmdlet,那么增加或设置 NTFS 权限就轻而易举:

1
2
3
4
5
6
$path = 'c:\test1'

mkdir $path

Get-NTFSAccess -Path $Path |
Add-NTFSAccess -Account training14\student14 -AccessRights CreateFiles -AccessType Allow

警告:您需要管理员权限才能更改 NTFS 权限,即使是操作您拥有的文件系统对象。

PowerShell 技能连载 - 管理 NTFS 权限

http://blog.vichamp.com/2017/03/29/managing-ntfs-permissions1/

作者

吴波

发布于

2017-03-29

更新于

2022-07-06

许可协议

评论