我尝试通过以下方式安排任务
schtasks /create /tn Test /sc minute /mo 1 /tr "del /f \"%UserProfile%\path\file\""
...然而,调度程序总是会出现以下类型的错误:
任务计划程序无法在任务“\Test”的实例“{a6c5962d-ed1e-4917-9d43-07525dd03218}”中启动操作“del”。附加数据:错误值:2147942402
路径中的文件存在。我可以del
从控制台运行相同的命令,它可以成功删除该文件,但我无法使其与计划任务一起工作。
我做错了什么?
答案1
where del
INFO: Could not find files for the given pattern(s).
使用
/TR "\"C:\Windows\System32\cmd.exe\" /C del /f \"%UserProfile%\path\file\""