Results 1 to 4 of 4

Thread: Installing JET for XP using Inno Setup

  1. #1

    Thread Starter
    Frenzied Member David.Poundall's Avatar
    Join Date
    Sep 2002
    Location
    Robin Hood Land
    Posts
    1,457

    Installing JET for XP using Inno Setup

    I have had a good search around for this one and come up with nothing so I am taking a stab and asking those who may know ... will this work.

    I have based it on the code used to install MDAC and the target system is only XP. MDAC 2.7 is already on but I need to be sure Jet is on there also. The file I am activating is the latest from Microsofts Website. But is my syntax right ?? Anyways, here it is...

    ' ----------------------------------------------

    [Files]
    Source: ..\windowsxp-kb829558-x86-enu.exe; DestDir: "{tmp}"; Flags: ignoreversion deleteafterinstall

    [Run]
    Filename: {tmp}\windowsxp-kb829558-x86-enu.exe; Parameters: /NORESTART /VERYSILENT WorkingDir: {tmp}; Flags: skipifdoesntexist

    ' ----------------------------------------------

    TIA
    David

    Learn the Rules so that you know how to break them properly.

    Printing dll dBTools MZTools Winsock API WinsockVB More Winsock SGrid2 MSChart Mail2Web

    If you have found this thread useful then read this

  2. #2
    Banned randem's Avatar
    Join Date
    Oct 2002
    Location
    Maui, Hawaii
    Posts
    11,385

    Re: Installing JET for XP using Inno Setup

    David.Poundall,

    That's good except for the part

    /NORESTART /VERYSILENT

    These parameters will only apply to a archive created by Inno Setup not Microsoft. You need to use the Microsoft parameters for that installation.

  3. #3

    Thread Starter
    Frenzied Member David.Poundall's Avatar
    Join Date
    Sep 2002
    Location
    Robin Hood Land
    Posts
    1,457

    Re: Installing JET for XP using Inno Setup

    Ok - Thanks Randem, researching it now.
    David

    Learn the Rules so that you know how to break them properly.

    Printing dll dBTools MZTools Winsock API WinsockVB More Winsock SGrid2 MSChart Mail2Web

    If you have found this thread useful then read this

  4. #4

    Thread Starter
    Frenzied Member David.Poundall's Avatar
    Join Date
    Sep 2002
    Location
    Robin Hood Land
    Posts
    1,457

    Re: Installing JET for XP using Inno Setup

    OK the script for the installing Jet on an XP machine is as follows.

    ' -----------------------------------------------------------------

    [Files]
    Source: E:\VBCode\Installers\02 - Webtracker Code June 2005\02 - Support DLL OCX's\windowsxp-kb829558-x86-enu.exe;
    DestDir: {tmp}; Flags: ignoreversion deleteafterinstall

    [Run]
    Filename: {tmp}\windowsxp-kb829558-x86-enu.exe;
    Parameters: /quiet; WorkingDir: {tmp}; Flags: skipifdoesntexist

    ' -----------------------------------------------------------------

    It does a quiet install and the M$ install part is intelligent to determine if it neads to be installed or not.

    You can get the file 'windowsxp-kb829558-x86-enu.exe' from here.
    David

    Learn the Rules so that you know how to break them properly.

    Printing dll dBTools MZTools Winsock API WinsockVB More Winsock SGrid2 MSChart Mail2Web

    If you have found this thread useful then read this

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width