2017-03-04 40 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

相關問題