PowerShell 技能连载 - 记录拒绝存取的文件夹
适用于 PowerShell 所有版本
当您用 Get-ChildItem
浏览文件系统的时候,您可能偶尔会碰到没有查看权限的文件夹。如果您希望将抛出次异常的所有文件夹都记录下来,请试试这个方法:
$result = Get-ChildItem -Path c:\Windows -Filter *.ps1 -Recurse -ErrorAction SilentlyContinue -ErrorVariable abcd
Write-Warning 'Unable to access these folders:'
Write-Warning ($abcd.TargetObject -join "`r`n")
这个技巧是隐藏所有错误提示(-ErrorAction SilentlyContinue
)但将错误都保存到一个变量中(-ErrorVariable abce
)。
PowerShell 技能连载 - 记录拒绝存取的文件夹
http://blog.vichamp.com/2015/02/04/logging-folders-with-access-denied-errors/