-1
這是我的mk.exe是在folder1中,但是在loader2.bat完成它的工作之後,它沒有將控制權傳遞給我的loader1.bat,並且mk.exe沒有執行。仍然沒有得到調用命令
@echo off
cd folder1\folder2
call Loader2.bat
mk.exe /s
我Loader2.bat
@echo off
DXSETUP.exe
echo Installing DirectX ... PLease Wait...
PhysX.exe /s
echo Installing PhysX ... Please Wait...
PhysXL.exe /s
echo Installing PhysX Legacy ... Please Wait...
vc.exe /s
echo Installing VC Redistributable ... Please Wait...
exit
你可以發佈'loader2.bat'嗎? –
將'exit'改爲'exit/b' – SomethingDark
我在退出後添加了/ b但仍然沒有任何反應, –