我正在尝试检索网络共享的以下属性。即使将大小设置为auto,它也会切断InheritanceFlags,并且不包括在输出中。显示所有属性的最佳方法是什么?
(get-acl L:\Sharename).access | ft IdentityReference,FileSystemRights,AccessControlType,IsInherited,InheritanceFlags -auto
我得到的警告是:
WARNING: column "InheritanceFlags" does not fit into the display and was removed.
事实证明,在Powershell属性中更改“屏幕缓冲区大小”和“窗口大小”根本没有帮助。
答案 0 :(得分:0)
我不知道为什么它会被截断(对我而言,列最后要换行,也许是ConEmu
东西),但是Format-List
应该为您垂直显示信息,而水平显示:< / p>
( Get-ACL L:\Sharename ).Access |
Format-List IdentityReference, FileSystemRights, AccessControlType, IsInherited, InheritanceFlags