在这样的环境中安全选项卡特性已被禁用且无法启用,还有其他方法可以显示文件夹的权限吗?
如果用户拥有正常的命令行访问权限但没有管理员权限会怎么样?
答案1
您可以使用 Powershell 和 Get-Acl 命令
PS D:\> Get-Acl
Directory:
Path Owner Access
---- ----- ------
D:\ NT SERVICE\TrustedInstaller Everyone Allow FullControl
将它与 Get-ChildItem(别名为 dir 和 ls)结合使用以获取文件的权限。
PS D:\> Get-ChildItem | Get-Acl
Or, using the alias:
PS D:\> Get-Acl | fl
PS D:\> Dir | Get-Acl