如果我想使用批处理文件重新启动 3 个程序,我该怎么做?

如果我想使用批处理文件重新启动 3 个程序,我该怎么做?

我想创建一个批处理文件,运行时它将退出 3 个单独的应用程序,等待几秒钟,然后重新启动相同的应用程序。有人能帮我提供一些资源来实现这个吗?谢谢。

答案1

这应该可以

taskkill /im yourprogram.exe /f
taskkill /im yourotherprogram.exe /f
taskkill /im yourotherotherprogram.exe /f
timeout /t secondstotimeout
start yourprogram
start yourotherprogram
start yourotherotherprogram

相关内容