0
我想在PowerShell中的新窗口/獨立實例中啓動一個bat文件。在powershell的新窗口中調用bat文件
該bat文件將採取powershell
例如,
mybat.bat $thiscomputer
我用盡
start mybat.bat $thiscomputer
start "cmd /c" mybat.bat $thiscomputer
start /k mybat.bat $thiscomputer
start-process mybat.bat $thiscomputer
通常蝙蝠不運行,但PowerShell腳本內停留。
我需要powershell腳本在新窗口中啓動蝙蝠並循環回到開頭。
感謝
Confuseis