我正在使用 Windows 7 64 位
这是我用来开始的代码片段
@echo off
call "C:\Program Files (x86)\LOLReplay\LOLRecorder.exe"
call "G:\League of Legends\lol.launcher.exe"
exit
但是除非我关闭 LOLRecorder.exe,否则它不会启动我的 lol.launcher.exe .... 基本上我希望在它们启动后同时运行和 cmd 提示退出。这里有什么问题?我在这里查看了另一个 stackoverflow 答案,但它指的是我正在使用的相同方法。
编辑:
使用 start 命令,它只会启动 2 个终端窗口,但什么也没有启动!
@echo off
start "C:\Program Files (x86)\LOLReplay\LOLRecorder.exe"
start "G:\League of Legends\lol.launcher.exe"
exit