How can I delete files with PowerShell without confirmation?

前端 未结 7 1937
暗喜
暗喜 2021-01-11 11:56

I am trying to get the below PowerShell script to work using Task Scheduler. The problem is that it wont delete any files.

When I run it manually it needs a confirma

7条回答
  •  南笙
    南笙 (楼主)
    2021-01-11 12:32

    You need to add -Confirm:$false to the Remove-Item command to override the default confirmation behaviour. Failing that, try adding -Force.

提交回复
热议问题