2017-03-04 72 views

回答

1

要显示一个文件或使用PowerShell的文件夹的访问权限,你可以使用这样的事情:

Get-Item D:\Data | Get-NTFSAccess 
Get-NTFSAccess -Path D:\Data 

,这将给你的结果看起来是这样的:

enter image description here

参考:Reading the permissions of a single item

相关问题