PowerShell 运行多个脚本
有没有办法创建一个运行多个脚本的脚本?此外,第一个脚本应在允许启动下一个脚本之前完成。
例子:
.\script1.ps1 arg1
#wait until script1 is done
.\script2.ps1 arg1 arg2
#wait until script2 is done
.\script3.ps1 arg1 arg2
Is there a way to create a script that runs multi scripts? Also the first script should finish before next script is allowed to start.
Example:
.\script1.ps1 arg1
#wait until script1 is done
.\script2.ps1 arg1 arg2
#wait until script2 is done
.\script3.ps1 arg1 arg2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您给出的示例是一个有效的脚本,只需将其放入脚本文件中并运行即可。
the example you gave is a valid script, just put it in a script file and run it.
试试:
just try :