gpt4 book ai didi

windows - 使用cmd依次打开多个程序

转载 作者:可可西里 更新时间:2023-11-01 11:21:36 24 4
gpt4 key购买 nike

我有一系列 3 个程序,必须一个接一个地启动。我在网上发现了类似的东西,这正是我想要做的:

start /wait /b First.exe
start /wait /b Second.exe
start /wait /b Third.exe

我的问题是我有 1000 个序列要启动...所以我尝试了

start "exemple" "start /wait /b First.exe
start /wait /b Second.exe
start /wait /b Third.exe"
start "exemple2" "start /wait /b First.exe
start /wait /b Second.exe
start /wait /b Third.exe"

我也试过

start /b First1.exe
start /wait /b Second1.exe
start /wait /b Third1.exe

start /b First2.exe
start /wait /b Second2.exe
start /wait /b Third2.exe

这也行不通...所以我不知道该怎么做。

有什么想法吗?谢谢:)

[编辑]

让我们试着让它更清晰

start "exemple" "start /wait /b First.exe
start /wait /b Second.exe
start /wait /b Third.exe"
start "exemple2" "start /wait /b First.exe
start /wait /b Second.exe
start /wait /b Third.exe"

失败是因为无法识别第 2 个启动,它表示 Windows 找不到“start/wait/b First.exe”

start /b First1.exe
start /wait /b Second1.exe
start /wait /b Third1.exe

start /b First2.exe
start /wait /b Second2.exe
start /wait /b Third2.exe

这失败了,因为订单是First1.exe 和 Second1.exe 启动。然后计算机等待 Second1.exe 结束以启动 First2.exe 和 Second2.exe ...

我想要的顺序是计算机启动 First1.exe & First2.exeSecond1.exe 在 First1.exe 完成时启动,Second2.exe 在 First2.exe 完成时启动。

我想避免每次执行都使用一个 .cmd(这将是我失败的解决方案)。

我希望这次我更清楚!

最佳答案

除了主实例之外,每个序列还需要一个 cmd.exe 实例。操作系统没有对排序进程的内置支持,并且 cmd.exe 不支持命令文件中的线程。

你可以这样做:

 start "sequence1" cmd /c "First.exe & Second.exe & Third.exe"
start "sequence2" cmd /c "First.exe & Second.exe & Third.exe"
start "sequence3" cmd /c "First.exe & Second.exe & Third.exe"
...

避免 cmd.exe 额外实例的(相当适度的)开销的唯一方法是用真正的编程语言而不是批处理文件编写解决方案。

您可能还需要考虑这是否是您真正想要做的。当数百个进程同时运行时,Windows 通常不会很好地运行。

关于windows - 使用cmd依次打开多个程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7711072/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com