我通過任務(wù)計(jì)劃程序執(zhí)行一項(xiàng)基本任務(wù),該任務(wù)調(diào)用執(zhí)行 Python 腳本的 Powershell 腳本。由于某種原因,當(dāng)我通過任務(wù)計(jì)劃程序調(diào)用 Powershell 腳本時(shí),它不會(huì)產(chǎn)生任何輸出,當(dāng)我查看歷史日志時(shí),它也成功完成。我可以通過終端手動(dòng)運(yùn)行 Powershell 腳本,一切正常。其他人遇到過這個(gè)問題嗎?謝謝!這是我的“編輯操作”參數(shù):程序/腳本: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe添加參數(shù)(可選): -ExecutionPolicy Bypass C:\Users\MyUserName\Documents\MyFolderName\MyPowerShellScript.ps1開始于(可選): C:\Users\MyUserName\Documents\MyFolderName\該任務(wù)也配置在Windows Vista, Windows Server 2008并將Run whether user is logged on or not這是我的 .ps1 腳本中的內(nèi)容:$Path = "C:\Users\MyUserName\Documents\MyFolderName"cd $Pathpipenv run python "main.py"*編輯我收到錯(cuò)誤代碼 0x1 作為L(zhǎng)ast Run Result,它應(yīng)該是 0x0
1 回答

蠱毒傳說
TA貢獻(xiàn)1895條經(jīng)驗(yàn) 獲得超3個(gè)贊
更改參數(shù)選項(xiàng)已經(jīng)起作用:
添加參數(shù)(可選):
-ExecutionPolicy Bypass -file "C:\Users\MyUserName\Documents\MyFolderName\MyPowerShellScript.ps1"
添加回答
舉報(bào)
0/150
提交
取消