jet4sp8.iss 602 B

123456789101112131415161718192021222324
  1. ; http://support.microsoft.com/kb/239114
  2. [CustomMessages]
  3. jet4sp8_title=Jet 4
  4. jet4sp8_size=3.7 MB
  5. [Code]
  6. const
  7. jet4sp8_url = 'http://download.microsoft.com/download/4/3/9/4393c9ac-e69e-458d-9f6d-2fe191c51469/Jet40SP8_9xNT.exe';
  8. procedure jet4sp8(minVersion: string);
  9. begin
  10. // check for Jet4 Service Pack 8 installation
  11. if (compareversion(fileversion(ExpandConstant('{sys}{\}msjet40.dll')), minVersion) < 0) then
  12. AddProduct('jet4sp8.exe',
  13. '/q:a /c:"install /qb /l"',
  14. CustomMessage('jet4sp8_title'),
  15. CustomMessage('jet4sp8_size'),
  16. jet4sp8_url,
  17. false, false, false);
  18. end;
  19. [Setup]