PowerShell删除文件到回收站的方法

发布时间:2020-01-05编辑:脚本学堂
本文介绍了PowerShell把文件删除到回收站的方法,powershell将文件放到回收站中,有需要的朋友参考下。

平时使用Powershell的Remove-Item命令删除了文件,也是属于彻底删除。
那怎样在powershell中将文件安全地删除进回收站?显然需要调用Windows的Com组件了:

代码:
 

复制代码 代码示例:
$testFile="jb200.com"
dir | Out-File $testFile
$shell = new-object -comobject "Shell.Application"
$item = $shell.Namespace(0).ParseName( (Resolve-Path $testFile).Path)
$item.InvokeVerb("delete")

注意第4行,一定要用绝对路径,使用相对路径可能会报错。