dotnetfx40full.iss 1.1 KB

123456789101112131415161718192021222324252627
  1. ; requires Windows 7, Windows 7 Service Pack 1, Windows Server 2003 Service Pack 2, Windows Server 2008, Windows Server 2008 R2, Windows Server 2008 R2 SP1, Windows Vista Service Pack 1, Windows XP Service Pack 3
  2. ; requires Windows Installer 3.1
  3. ; requires Internet Explorer 5.01
  4. ; 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
  5. ; http://www.microsoft.com/downloads/en/details.aspx?FamilyID=9cfb2d51-5ff4-4491-b0e5-b386f32c0992
  6. [CustomMessages]
  7. dotnetfx40full_title=.NET Framework 4.0 Full
  8. dotnetfx40full_size=3 MB - 197 MB
  9. [Code]
  10. const
  11. dotnetfx40full_url = 'http://download.microsoft.com/download/1/B/E/1BE39E79-7E39-46A3-96FF-047F95396215/dotNetFx40_Full_setup.exe';
  12. procedure dotnetfx40full();
  13. begin
  14. if (not netfxinstalled(NetFx40Full, '')) then
  15. AddProduct('dotNetFx40_Full_setup.exe',
  16. '/lcid ' + CustomMessage('lcid') + ' /passive /norestart',
  17. CustomMessage('dotnetfx40full_title'),
  18. CustomMessage('dotnetfx40full_size'),
  19. dotnetfx40full_url,
  20. false, false, false);
  21. end;
  22. [Setup]