How can I delete files with PowerShell without confirmation?

前端 未结 7 1860
暗喜
暗喜 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:49

    It says

    Recurse parameter was not specified. If you continue, all children will be removed with the item. Are you sure you want to continue?

    Try: Remove-Item ./folderToDelete -Force -Recurse

提交回复
热议问题