我有这个脚本可以进入一个共享驱动器的每个文件并列出 ACL,但我不希望它走得太远,因为有数百万个文件并且它永远不会完成(运行了一天多并得到了一个 csv超过 6 GB 的文件)。
我尝试使用 get-childitem *** 但它似乎不起作用。任何帮助将不胜感激。理想情况下,只有 2 层深就可以了。谢谢
$ErrorActionPreference = "Continue"
$strComputer = $env:ComputerName
$colDrives = Get-PSDrive -PSProvider Filesystem
#IF ($DriveLetter -eq "N:\")
$StartPath = "N:"
Get-ChildItem $StartPath\*\*\ -Recurse |
ForEach {
$FullPath = Get-Item -LiteralPath (Get-Item -LiteralPath $_.PSPath)
(Get-Item -LiteralPath $FullPath).GetAccessControl() |
Select * -Expand Access |
Select @{N='Server Name';E={$strComputer}},
@{N='Full Path';E={$FullPath}},
@{N='Type';E={If($FullPath.PSIsContainer -eq $True) {'D'} Else {'F'}}},
@{N='Owner';E={$_.Owner}},
@{N='Trustee';E={$_.IdentityReference}},
@{N='Inherited';E={$_.IsInherited}},
@{N='Inheritance Flags';E={$_.InheritanceFlags}},
@{N='Ace Flags';E={$_.PropagationFlags}},
@{N='Ace Type';E={$_.AccessControlType}},
@{N='Access Masks';E={$_.FileSystemRights}} } |
Export-CSV -NoTypeInformation –Path "C:\stuff\NDriveShares.csv"