发布网友
共4个回答
热心网友
可以用记事本写个批处理文件,比如:
start c:\a.exe
start d:\b.exe
保存退出,记住,如果有路径的话,路径里不能有空格,如果批处理文件在这两个文件的同一文件夹里的话就不用写路径了
热心网友
呵呵,没看清,试试他们的
热心网友
把问题说明白.太模糊了
热心网友
@echo off
if NOT exist a.exe goto Fail
if NOT exist b.exe goto Fail
start a.exe
start b.exe
:Fail
echo File missing. Any key to exit.
pause>nul