ShareX/ShareX.Setup/InnoSetup/Scripts/products/jet4sp8.iss

25 lines
602 B
Text
Raw Normal View History

2018-03-01 02:40:20 +13:00
; http://support.microsoft.com/kb/239114
[CustomMessages]
jet4sp8_title=Jet 4
2018-03-01 02:40:20 +13:00
jet4sp8_size=3.7 MB
[Code]
const
jet4sp8_url = 'http://download.microsoft.com/download/4/3/9/4393c9ac-e69e-458d-9f6d-2fe191c51469/Jet40SP8_9xNT.exe';
2018-03-01 02:40:20 +13:00
procedure jet4sp8(minVersion: string);
begin
2018-03-01 02:40:20 +13:00
// check for Jet4 Service Pack 8 installation
if (compareversion(fileversion(ExpandConstant('{sys}{\}msjet40.dll')), minVersion) < 0) then
AddProduct('jet4sp8.exe',
'/q:a /c:"install /qb /l"',
CustomMessage('jet4sp8_title'),
CustomMessage('jet4sp8_size'),
jet4sp8_url,
2018-03-01 02:40:20 +13:00
false, false, false);
end;
[Setup]