我有一个脚本,我递归删除某些目录中的一些文件。问题出在该目录的规范中。
当我尝试明确指定它时(即仅清除user1目录),它可以正常工作:
$temp = "C:\Users\user1\AppData\Local\Temp\"
Get-ChildItem $temp -Recurse -Force -Verbose -ErrorAction SilentlyContinue | remove-item -force -Verbose -recurse -ErrorVariable FailedItems -ErrorAction SilentlyContinue
但是,当我使用通配符指定它时(即影响此PC上的所有用户)
$temp = "C:\Users\*\AppData\Local\Temp\*"
Get-ChildItem $temp -Recurse -Force -Verbose -ErrorAction SilentlyContinue | remove-item -force -Verbose -recurse -ErrorVariable FailedItems -ErrorAction SilentlyContinue
失败并显示错误
Get-ChildItem : Access is denied
At line:7 char:1
+ Get-ChildItem $localTempDir -Recurse -Force -Verbose -ErrorAction Sil ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Get-ChildItem], UnauthorizedAccessException
+ FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.PowerShell.Commands.GetChildItemCommand
怎么会这样? 这绝对不是权限问题,因为它的是相同的目录。 是的,我使用提升的权限运行脚本 以这种格式指定的其他目录,例如
C:\Users\*\AppData\Local\Microsoft\Windows\Caches
C:\Windows\Temp\*
像一个魅力被清除。
答案 0 :(得分:1)
如果您想排除配置文件列表并处理子文件夹列表,也许您可以使用这些内容:
$targets = "AppData\Local\Microsoft\Windows\Caches",
"AppData\Local\Microsoft\Windows\Temporary Internet Files"
$special = @("Default", "Public")
$profiles = Get-ChildItem "C:\Users" -Directory |
Where-Object Name -NotIn $special |
Select-Object -ExpandProperty FullName
$profiles | ForEach-Object {
foreach($target in $targets) {
$path = Join-Path $_ $target
#delete/empty $path
}
}
注意:语法是PS3.0 +