dotnetfx40client.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=5765d7a8-7722-4888-a970-ac39b33fd8ab
  6. [CustomMessages]
  7. dotnetfx40client_title=.NET Framework 4.0 Client
  8. dotnetfx40client_size=3 MB - 197 MB
  9. [Code]
  10. const
  11. dotnetfx40client_url = 'http://download.microsoft.com/download/7/B/6/7B629E05-399A-4A92-B5BC-484C74B5124B/dotNetFx40_Client_setup.exe';
  12. procedure dotnetfx40client();
  13. begin
  14. if (not netfxinstalled(NetFx40Client, '')) then
  15. AddProduct('dotNetFx40_Client_setup.exe',
  16. '/lcid ' + CustomMessage('lcid') + ' /passive /norestart',
  17. CustomMessage('dotnetfx40client_title'),
  18. CustomMessage('dotnetfx40client_size'),
  19. dotnetfx40client_url,
  20. false, false, false);
  21. end;
  22. [Setup]