仍然没有得到呼叫命令

时间:2015-07-01 20:09:18

标签: batch-file cmd call

这是我的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

1 个答案:

答案 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...

并且呼叫功能应该按照您的意愿行事。