dotnetfx47.iss 985 B

12345678910111213141516171819202122232425
  1. ; requires Windows 10, Windows 7 Service Pack 1, Windows 8.1, Windows Server 2008 R2 SP1, Windows Server 2012, Windows Server 2012 R2, Windows Server 2016
  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=55170
  4. [CustomMessages]
  5. dotnetfx47_title=.NET Framework 4.7
  6. dotnetfx47_size=1 MB - 59 MB
  7. [Code]
  8. const
  9. dotnetfx47_url = 'http://download.microsoft.com/download/A/E/A/AEAE0F3F-96E9-4711-AADA-5E35EF902306/NDP47-KB3186500-Web.exe';
  10. procedure dotnetfx47(minVersion: integer);
  11. begin
  12. if (not netfxinstalled(NetFx4x, '') or (netfxspversion(NetFx4x, '') < minVersion)) then
  13. AddProduct('dotnetfx47.exe',
  14. '/lcid ' + CustomMessage('lcid') + ' /passive /norestart',
  15. CustomMessage('dotnetfx47_title'),
  16. CustomMessage('dotnetfx47_size'),
  17. dotnetfx47_url,
  18. false, false, false);
  19. end;
  20. [Setup]