0
我有兩個腳本,一個是基於Python的,另一個是基於powershell的腳本。 我的要求是我需要先運行Python腳本,然後在啓動時運行powershell腳本。如何讓Python腳本在執行後運行powershell腳本
使用任務計劃程序我可以運行Python腳本,但我需要找到一種方法在python腳本完成後運行powershell腳本。
一些研究顯示在線,我可以添加這樣的:在我的Python腳本
使用os.system( 「powershell.exe script.ps1」),但拋出一個錯誤:(Unicode的錯誤)「unicodeescape '編解碼器不能解碼位置上的字節.....
有什麼建議嗎?