PowerShell 运行多个脚本

发布于 2024-12-01 19:36:25 字数 213 浏览 0 评论 0原文

有没有办法创建一个运行多个脚本的脚本?此外,第一个脚本应在允许启动下一个脚本之前完成。

例子:

.\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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

挽你眉间 2024-12-08 19:36:26

您给出的示例是一个有效的脚本,只需将其放入脚本文件中并运行即可。

the example you gave is a valid script, just put it in a script file and run it.

因为看清所以看轻 2024-12-08 19:36:26

试试:

.\script1.ps1 arg1;.\script2.ps1 arg1 arg2;.\script3.ps1 arg1 arg2

just try :

.\script1.ps1 arg1;.\script2.ps1 arg1 arg2;.\script3.ps1 arg1 arg2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文