dotnetfx35.iss 913 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=333325FD-AE52-4E35-B531-508D977D32A6
  5. [CustomMessages]
  6. dotnetfx35_title=.NET Framework 3.5
  7. dotnetfx35_size=3 MB - 197 MB
  8. [Code]
  9. const
  10. dotnetfx35_url = 'http://download.microsoft.com/download/7/0/3/703455ee-a747-4cc8-bd3e-98a615c3aedb/dotNetFx35setup.exe';
  11. procedure dotnetfx35();
  12. begin
  13. if (netfxinstalled(NetFx35, '') = false) then
  14. AddProduct('dotnetfx35.exe',
  15. '/lang:enu /passive /norestart',
  16. CustomMessage('dotnetfx35_title'),
  17. CustomMessage('dotnetfx35_size'),
  18. dotnetfx35_url,
  19. false, false, false);
  20. end;
  21. [Setup]