第一种:不显示批处理框且没有进 程
@echo off
if %1.==. mshta vbscript:createobject("wscript.shell").run("""%~f0""
h",0)(close)&exit/b
:loop
"E:\call of duty modern warfare 2\iw4mp.dat"
goto loop
第二种:显示批处理框
@echo off
:0
start /wait /d "E:\call of duty modern warfare 2\" iw4mp.dat
goto 0