怎样在命令行下同时运行多个程序

来源:百度知道 编辑:UC知道 时间:2024/05/22 16:17:37
想用一个批处理运行2个指定程序。代码怎么写??

start 盘符及目录名\程序名.exe
start 盘符及目录名\程序名.exe
exit

保存为BAT文件,目录名超过8位的用~1代替。

例:start C:\Program Files\xdict\xdict.exe

start a.exe
start b.exe

或者

a.exe & b.exe
——未作验证