【发布时间】:2011-09-23 04:26:54
【问题描述】:
我使用的是 Windows 7 64 位
这是我用来启动的代码 sn-p
@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 答案 Here,但它指的是我正在使用的相同方法。
编辑:
使用 start 命令,它只会启动 2 个终端窗口,但什么也没有启动!
@echo off
start "C:\Program Files (x86)\LOLReplay\LOLRecorder.exe"
start "G:\League of Legends\lol.launcher.exe"
exit
【问题讨论】:
标签: windows-7 command-line cmd command-prompt windows-console