我有一个PowerShell脚本调用批处理脚本(我无法更改批处理脚本的内容)。批处理脚本完成后会提示Press any key to continue...
,我必须手动按下一个键。
PowerShell脚本的一个示例:
Start-Process script1.bat -NoNewWindow -Wait #this prompts 'Press any key...'
Start-Process script2.bat -NoNewWindow -Wait
如何强制PowerShell 按任意键以便继续使用以下命令?