View Single Post
  #21  
Old 11-03-2009, 01:41
peterf1999's Avatar
peterf1999 peterf1999 is offline
Die Hard Member
 
Join Date: Nov 2008
Location: Italy
Posts: 928
Thanks: 14
Thanked 983 Times in 236 Posts
peterf1999 is on a distinguished road
Quote:
Originally Posted by mondragon View Post
two loaders ?
idont have time to do this.
One loader (dxsetup.exe), the other is original directx setup (dx.exe)

Code:
function InitializeSetup(): Boolean;

var
ResultCode: integer; InS: string; InL: string;

    begin

    // Directx setup

    Exec (ExpandConstant('{src}\DX.exe'),'', '', SW_SHOW,
    ewWaitUntilTerminated, ResultCode)
   //
    RegQueryStringValue(HKEY_LOCAL_MACHINE, 'Software\Microsoft\Windows\CurrentVersion\Uninstall\{81FF29CE-2D23-45FC-8BDE-7491A15F2B02}',
      'InstallSource', InS)
    RegQueryStringValue(HKEY_LOCAL_MACHINE, 'Software\Microsoft\Windows\CurrentVersion\Uninstall\{81FF29CE-2D23-45FC-8BDE-7491A15F2B02}',
      'InstallLocation', InL)

   //unpack freearc archive and exit

    Exec (InS+'NV_arc.exe', '-x -d'+'"'+InL+'\data'+'"'+' -y -s2', '', SW_SHOW,
      ewWaitUntilTerminated, ResultCode)
    Result:=FALSE
  //
    end;
Reply With Quote