ie6.iss 827 B

12345678910111213141516171819202122232425262728
  1. ; requires Windows 2000; Windows 98; Windows ME; Windows NT; Windows XP Service Pack 1
  2. ; WARNING: express setup (downloads and installs the components depending on your OS)
  3. ; http://www.microsoft.com/downloads/details.aspx?familyid=1E1550CB-5E5D-48F5-B02B-20B602228DE6
  4. [CustomMessages]
  5. ie6_title=Internet Explorer 6
  6. ie6_size=1 MB - 77.5 MB
  7. [Code]
  8. const
  9. ie6_url = 'http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/EN-US/ie6setup.exe';
  10. procedure ie6(minVersion: string);
  11. var
  12. version: string;
  13. begin
  14. RegQueryStringValue(HKLM, 'Software\Microsoft\Internet Explorer', 'Version', version);
  15. if (compareversion(version, minVersion) < 0) then
  16. AddProduct('ie6.exe',
  17. '/q:a /C:"setup /QNT"',
  18. CustomMessage('ie6_title'),
  19. CustomMessage('ie6_size'),
  20. ie6_url,
  21. false, false, false);
  22. end;
  23. [Setup]