I am a beginner in inno scripting and sorry about my bad English. My problem is, how can I execute a batch file during installation? Actually the whole installation is dependent upon the batch file i.e. The setup should simply execute the batch and show the progress, The batch will do everything (decompression etc.)
Source code:
@echo off
arc x data.cab >nul
del data.cab >nul
srep.exe -d data1.cab >nul
del data1.cab >nul
pZlib decode data2.cab data3.tar >nul
del data2.cab >nul
7z.exe x data3.tar >nul
del data3.tar >nul
Please help