dotnetfx20sp1.iss 1.1 KB

123456789101112131415161718192021222324252627
  1. ; requires Windows 2000 Service Pack 4, Windows Server 2003, Windows XP Service Pack 2
  2. ; requires KB 835732 on Windows 2000 Service Pack 4
  3. ; http://www.microsoft.com/downloads/details.aspx?FamilyID=79bc3b77-e02c-4ad3-aacf-a7633f706ba5
  4. [CustomMessages]
  5. dotnetfx20sp1_title=.NET Framework 2.0 Service Pack 1
  6. dotnetfx20sp1_size=23.6 MB
  7. [Code]
  8. const
  9. dotnetfx20sp1_url = 'http://download.microsoft.com/download/0/8/c/08c19fa4-4c4f-4ffb-9d6c-150906578c9e/NetFx20SP1_x86.exe';
  10. dotnetfx20sp1_url_x64 = 'http://download.microsoft.com/download/9/8/6/98610406-c2b7-45a4-bdc3-9db1b1c5f7e2/NetFx20SP1_x64.exe';
  11. dotnetfx20sp1_url_ia64 = 'http://download.microsoft.com/download/c/9/7/c97d534b-8a55-495d-ab06-ad56f4b7f155/NetFx20SP1_ia64.exe';
  12. procedure dotnetfx20sp1();
  13. begin
  14. if (netfxspversion(NetFx20, '') < 1) then
  15. AddProduct('dotnetfx20sp1' + GetArchitectureString() + '.exe',
  16. '/passive /norestart /lang:ENU',
  17. CustomMessage('dotnetfx20sp1_title'),
  18. CustomMessage('dotnetfx20sp1_size'),
  19. GetString(dotnetfx20sp1_url, dotnetfx20sp1_url_x64, dotnetfx20sp1_url_ia64),
  20. false, false, false);
  21. end;
  22. [Setup]