View Single Post
  #1160  
Old 15-03-2015, 13:09
leotrim77 leotrim77 is offline
Registered User
 
Join Date: Nov 2014
Location: Globe
Posts: 19
Thanks: 0
Thanked 2 Times in 1 Post
leotrim77 is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
wrong switch for DX

read this

http://fileforums.com/showthread.php?t=95092
I am not understanding nothing that topic ...
where is the problem ... ? what should I edit on script ../ ?

my script right now is:

Code:
if CurStep=ssPostInstall then begin
    if DirectXCB.Checked then begin
      Status.Caption:='Installing DirectX...';
      Status.Left := 200;
      Status.Top := 200;
      Status.Width := 223;
      Status.Height := 20;
      Exec2(ExpandConstant('{src}\Redist\DirectX\dxsetup.exe'),'/q',false);
    end;
    if NvidiaPhysx.Checked then begin
      Status.Caption:='Installing Nvidia Physx...';
      Status.Left := 200;
      Status.Top := 200;
      Status.Width := 227;
      Status.Height := 20;
      Exec2(ExpandConstant('{src}\Redist\PhysX.msi'),'/q',false);
    end;
    if VisualCCB.Checked then begin
      Status.Caption:='Installing Visual C++...';
      Status.Left := 200;
      Status.Top := 200;
      Status.Width := 227;
      Status.Height := 20;
      Exec2(ExpandConstant('{src}\Redist\vcredist_x86.exe'),'/q',false);
    end;

Last edited by leotrim77; 15-03-2015 at 13:17.
Reply With Quote