powershell脚本在run.exe中工作,但不能按计划任务工作

时间:2017-11-15 00:22:40

标签: powershell scheduled-tasks

我在下面安排了此任务,当我单击在任务计划程序中运行时,它不会抛出任何错误,但脚本不会执行: 程序:

C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -Command "& S:\Scripts\Download-USPTO-Forms.ps1 -destinationFolder 'S:\Scripts\USPTO Forms'"

当我打开Run.exe并运行此cmd时,将打开Powershell窗口并执行脚本:

C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -Command "& S:\Scripts\Download-USPTO-Forms.ps1 -destinationFolder 'S:\Scripts\USPTO Forms'"

为什么?有任何想法吗?该任务似乎正确安排。

1 个答案:

答案 0 :(得分:0)

您为什么使用呼叫运营商?

powershell -File "S:\Scripts\Download-USPTO-Forms.ps1" -destinationFolder "S:\Scripts\USPTO Forms"

此外,请确保任务已正确映射驱动器和权限。