使用Powershell V2的空回收站



有没有办法使用 Powershell 2.0 清空回收站。

我不想更新Powershell。

您可以通过com对象清除回收站。这样:

$Shell= New-Object -ComObject Shell.Application 
$Bin = $Shell.NameSpace(10)
foreach ($Item in @($Bin.Items())){Remove-item $Item.Path -Force}

您也可以直接调用SHEmptyRecycleBin Win32函数:

$definition = @'
[DllImport("Shell32.dll", CharSet = CharSet.Unicode)]
public static extern uint SHEmptyRecycleBin(IntPtr hwnd, string pszRootPath, uint dwFlags);
'@
$winApi = Add-Type -MemberDefinition $definition -Name WinAPI -Namespace Extern -PassThru
$winApi::SHEmptyRecycleBin(0, $null, 7)

删除所有回收站,不显示确认消息,不显示进度条,无声音。

相关内容

  • 没有找到相关文章

最新更新