删除项目不起作用,删除项目不起作用

时间:2014-09-01 13:01:31

标签: windows powershell

有人知道Remove-ItemDelete工作时会失败的原因吗?


在下面的脚本中,我得到了一个我想删除的文件列表 使用Remove-Item我收到以下错误消息:

  

VERBOSE:在目标上执行“删除文件”操作   “\\ UncPath \文件夹\ TEST.RTF”。删除项目:无法删除项目   \\ UncPath \ Folder \ test.rtf:拒绝访问路径。

但正在使用Delete删除这些文件。

脚本

$files = gci \\UncPath\Folder| ?{ $_.LastWriteTime -le (Get-Date).addDays(-28) }

# This doesn't work
$files | Remove-Item -force -verbose

# But this does
$files | % { $_.Delete() }

2 个答案:

答案 0 :(得分:7)

对于使用UNC路径,powershell可能会很奇怪,我认为它可以使用当前提供程序预先设置UNC路径,您可以通过以下方式验证:

cd c:
test-path \\127.0.0.1\c$
  

返回TRUE

cd HKCU:
test-path \\127.0.0.1\c$
  

返回FALSE

在指定完整路径时,我们告诉powershell使用文件系统提供程序,这解决了问题。您还可以指定提供商,例如remove-item filesystem::\\uncpath\folder

答案 1 :(得分:2)

我终于可以重复这个和IMO这似乎是一个错误。 repro是拥有像C $这样的开放共享,但是为文件上的用户设置拒绝修改权限。当我这样做时,我会注意到这一点:

PS> gci '\\Keith-PC\C$\Users\Keith\foo.txt' | ri -for
ri : Cannot remove item \\Keith-PC\C$\Users\Keith\foo.txt: Access to the path is denied.
At line:1 char:43
+ gci '\\Keith-PC\C$\Users\Keith\foo.txt' | ri -for
+                                           ~~~~~~~
    + CategoryInfo          : InvalidArgument: (\\Keith-PC\C$\Users\Keith\foo.txt:FileInfo) [Remove-Item], ArgumentExc
   eption
    + FullyQualifiedErrorId : RemoveFileSystemItemArgumentError,Microsoft.PowerShell.Commands.RemoveItemCommand

PS> gci '\\Keith-PC\C$\Users\Keith\foo.txt' | %{$_.Delete()} # <== this works!

我还观察到删除-Force参数也会删除文件而不会出错。拒绝权限仍然允许我从Windows资源管理器中删除该文件,这使我相信该文件应该删除。那么使用-Force参数怎么样呢?当我深入研究ErrorRecord时,我看到了这一点:

Message        : Access to the path is denied.
ParamName      :
Data           : {}
InnerException :
TargetSite     : Void set_Attributes(System.IO.FileAttributes)
StackTrace     :    at System.IO.FileSystemInfo.set_Attributes(FileAttributes value)
                    at Microsoft.PowerShell.Commands.FileSystemProvider.RemoveFileSystemItem(FileSystemInfo
                 fileSystemInfo, Boolean force)

似乎-Force参数试图设置(更可能是 reset )属性,并且文件的权限不允许它,例如:

PS> gci '\\Keith-PC\C$\Users\Keith\foo.txt' | %{$_.Attributes = 'Normal'}
Exception setting "Attributes": "Access to the path is denied."
At line:1 char:45
+ gci '\\Keith-PC\C$\Users\Keith\foo.txt' | %{$_.Attributes = 'Normal'}
+                                             ~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [], SetValueInvocationException
    + FullyQualifiedErrorId : ExceptionWhenSetting

所以在我看来,PowerShell首先应该尝试-Force不存在,如果失败,请尝试重置属性。