1. 程式人生 > >多個exe程式一起打包,按順序安裝

多個exe程式一起打包,按順序安裝

通過bat的start /wait順序安裝exe。
**@echo off
cls
echo 開始安裝setup,預計需要2分鐘左右時間…….
start /wait .\setup.exe
echo 開始安裝Setup Screen Capturer Recorder v0.12.8,預計需要3分鐘左右時間…….
start /wait .\”Setup Screen Capturer Recorder v0.12.8.exe”
pause

用WinRAR將多個exe以自解壓的格式打包在一起,將解壓後執行的檔案設定成上面的bat檔案即可。