View Single Post
  #71  
Old 08-11-2011, 19:11
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
janek2012, Highlight whats changed..

Quote:
Originally Posted by gentilu View Post
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.

Last edited by pakrat2k2; 08-11-2011 at 20:10.