使用PS:如何在不发送到回收站的情况下强制删除文件?

时间:2018-09-19 16:55:57

标签: powershell

我每天在任务计划程序中使用以下脚本删除一些文件:

Get-ChildItem -Path "C:\Temp\*.txt" -force -ErrorAction SilentlyContinue | where {($_.LastwriteTime -lt  (Get-Date).AddDays(-1) ) -and (! $_.PSIsContainer)} | Remove-Item -Verbose -Force -ErrorAction SilentlyContinue

有效。但是,这些文件将被发送到回收站。因此,我们仍然需要每隔一段时间清空一次回收站。是否可以通过使用PS脚本(或Windows中的某些设置)发送到回收站来删除文件?

谢谢

1 个答案:

答案 0 :(得分:0)

remove-item删除文件而不将其发送到回收站。