dotnetfx46.iss 955 B

12345678910111213141516171819202122232425
  1. ; requires Windows 7 Service Pack 1, Windows 8.1, Windows Server 2008 R2 SP1, Windows Server 2012, Windows Server 2012 R2
  2. ; 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
  3. ; https://www.microsoft.com/en-US/download/details.aspx?id=53345
  4. [CustomMessages]
  5. dotnetfx46_title=.NET Framework 4.6.2
  6. dotnetfx46_size=1 MB - 59 MB
  7. [Code]
  8. const
  9. dotnetfx46_url = 'http://download.microsoft.com/download/D/5/C/D5C98AB0-35CC-45D9-9BA5-B18256BA2AE6/NDP462-KB3151802-Web.exe';
  10. procedure dotnetfx46(minVersion: integer);
  11. begin
  12. if (not netfxinstalled(NetFx4x, '') or (netfxspversion(NetFx4x, '') < minVersion)) then
  13. AddProduct('dotnetfx46.exe',
  14. '/lcid ' + CustomMessage('lcid') + ' /passive /norestart',
  15. CustomMessage('dotnetfx46_title'),
  16. CustomMessage('dotnetfx46_size'),
  17. dotnetfx46_url,
  18. false, false, false);
  19. end;
  20. [Setup]