dotnetfx35sp1.iss 948 B

1234567891011121314151617181920212223242526
  1. ; requires Windows Server 2003 Service Pack 1, Windows Server 2008, Windows Vista, Windows XP Service Pack 2
  2. ; requires Windows Installer 3.1
  3. ; WARNING: express setup (downloads and installs the components depending on your OS) if you want to deploy it on cd or network download the full bootsrapper on website below
  4. ; http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7
  5. [CustomMessages]
  6. dotnetfx35sp1_title=.NET Framework 3.5 Service Pack 1
  7. dotnetfx35sp1_size=3 MB - 232 MB
  8. [Code]
  9. const
  10. dotnetfx35sp1_url = 'http://download.microsoft.com/download/0/6/1/061f001c-8752-4600-a198-53214c69b51f/dotnetfx35setup.exe';
  11. procedure dotnetfx35sp1();
  12. begin
  13. if (netfxspversion(NetFx35, '') < 1) then
  14. AddProduct('dotnetfx35sp1.exe',
  15. '/lang:enu /passive /norestart',
  16. CustomMessage('dotnetfx35sp1_title'),
  17. CustomMessage('dotnetfx35sp1_size'),
  18. dotnetfx35sp1_url,
  19. false, false, false);
  20. end;
  21. [Setup]