View Single Post
  #5  
Old 24-12-2014, 19:31
Dante1995 Dante1995 is offline
Banned
 
Join Date: Feb 2014
Location: Black Hole
Posts: 297
Thanks: 116
Thanked 481 Times in 162 Posts
Dante1995 is on a distinguished road
ISComps

ISComps Installer only Arc file


Fix error Components:

comp1:=DirectX
comp2:=Redist x86
comp3:=Redist x64
comp4:=Nvidia PhysX


Code:
comp1:=Check: IsComponent2(1) and CheckError
comp2:=Check: not IsWin64 and IsComponent2(2) and CheckError
comp3:=Check: IsWin64 and IsComponent2(3) and CheckError
comp4:=Check: IsComponent2(4) and CheckError


Correct:
Code:
Filename: {src}\Redist\DirectX\DXSETUP.exe; Parameters: /Silent; StatusMsg: {cm:install2} Microsoft DirectX 9.0c...;  Flags: skipifdoesntexist;  Check: IsComponent2(1) and CheckError
Filename: {src}\Redist\Redist\vcredist_x86.exe; Parameters: /q; StatusMsg: {cm:install2} Microsoft Visual C++ Redist x86...; Flags: skipifdoesntexist;  Check: not IsWin64 and IsComponent2(2) and CheckError
Filename: {src}\Redist\Redist\vcredist_x64.exe; Parameters: /q; StatusMsg: {cm:install2} Microsoft Visual C++ Redist x64...; Flags: skipifdoesntexist;  Check: IsWin64 and IsComponent2(3) and CheckError
Filename: {src}\Redist\PhysX.exe;    Parameters: /qn; StatusMsg: {cm:install2} Nvidia PhysX...; Flags: skipifdoesntexist;  Check: IsComponent2(4) and CheckError

Last edited by Dante1995; 28-12-2014 at 20:54.
Reply With Quote
The Following 2 Users Say Thank You to Dante1995 For This Useful Post:
Andrey167 (28-12-2014), Razor12911 (27-02-2015)