janek2012, Highlight whats changed..
Quote:
Originally Posted by gentilu
Code:
Launch1=DirectX
Launch164=0
LaunchCom1=__Installer\directx\redist\DXSetup.exe
LaunchArg1=/silent
Launch3=Microsoft Visual C++ 2008 (x86)
Launch364=0
LaunchCom3=__Installer\vc\vc2008sp1\redist\vcredist_x86.exe
LaunchArg3=/q:a
Launch4=Microsoft Visual C++ 2008 (x64)
Launch464=1
LaunchCom4=__Installer\vc\vc2008sp1\redist\vcredist_x64.exe
LaunchArg4=/q:a
How to add this^ in my project .iss?
|
Add them to the [RUN] section of the ISS script. Point to the correct folder of course... examples below:
IE:
Filename: {src}\DirectX\DXSETUP.exe; Parameters: /silent; StatusMsg: {cm:run} Microsoft DirectX...; Tasks: DirectX (----> DIRECTX folder on DVD)
Filename: {src}\PhysX\PhysX_9.10.0224_SystemSoftware.exe; Parameters: /quiet; StatusMsg: {cm:run} NVIDIA PhysX...; Tasks: PhysX (---> Physx Folder on DVD)
Filename: {src}\vcredist_x86.exe; Parameters: /q; StatusMsg: {cm:run} Visual C++ Runtime... (---> In the ROOT of the DVD.)
whats in () is NOT part of what you add to the [RUN] section.