这是我的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
答案 0 :(得分:0)
如果你exit
它结束了这个过程。为避免这种情况,我们使用goto :eof
或只是点击文件的末尾。
将 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...
并且呼叫功能应该按照您的意愿行事。