dotnetfx20sp2.iss 979 B

12345678910111213141516171819202122232425
  1. ; http://www.microsoft.com/downloads/details.aspx?familyid=5B2C0358-915B-4EB5-9B1D-10E506DA9D0F
  2. [CustomMessages]
  3. dotnetfx20sp2_title=.NET Framework 2.0 Service Pack 2
  4. dotnetfx20sp2_size=24 MB - 52 MB
  5. [Code]
  6. const
  7. dotnetfx20sp2_url = 'http://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x86.exe';
  8. dotnetfx20sp2_url_x64 = 'http://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x64.exe';
  9. dotnetfx20sp2_url_ia64 = 'http://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_ia64.exe';
  10. procedure dotnetfx20sp2();
  11. begin
  12. if (netfxspversion(NetFx20, '') < 2) then
  13. AddProduct('dotnetfx20sp2' + GetArchitectureString() + '.exe',
  14. '/passive /norestart /lang:ENU',
  15. CustomMessage('dotnetfx20sp2_title'),
  16. CustomMessage('dotnetfx20sp2_size'),
  17. GetString(dotnetfx20sp2_url, dotnetfx20sp2_url_x64, dotnetfx20sp2_url_ia64),
  18. false, false, false);
  19. end;
  20. [Setup]