0
我想通過批處理執行.ps1文件後自動關閉命令行窗口。 (批處理工作,但窗口不打烊/執行後disappering)通過批處理執行.ps1文件後自動關閉命令行窗口
Here's批:
cd C:\
powershell.exe -noexit "& C:\Users\user1\Desktop\Test.ps1"
exit
我有什麼改變或增加?
我想通過批處理執行.ps1文件後自動關閉命令行窗口。 (批處理工作,但窗口不打烊/執行後disappering)通過批處理執行.ps1文件後自動關閉命令行窗口
Here's批:
cd C:\
powershell.exe -noexit "& C:\Users\user1\Desktop\Test.ps1"
exit
我有什麼改變或增加?
使用start
命令來解決您的問題。
代碼:
start "" powershell.exe -noexit "& C:\Users\user1\Desktop\Test.ps1"
嗯......有關刪除什麼'-noexit'? – aschipfl