dotnetfx11.iss 1.1 KB

12345678910111213141516171819202122232425
  1. ; requires Windows 2000; Windows Server 2003 Service Pack 1 for Itanium-based Systems; Windows Server 2003 x64 editions; Windows Server 2008 Datacenter; Windows Server 2008 Enterprise; Windows Server 2008 for Itanium-based Systems; Windows Server 2008 Standard; Windows Vista Business; Windows Vista Enterprise; Windows Vista Home Basic; Windows Vista Home Premium; Windows Vista Starter; Windows Vista Ultimate; Windows XP; Windows XP Professional x64 Edition; Windows NT 4.0 Service Pack 6a
  2. ; requires internet explorer 5.0.1 or higher
  3. ; http://www.microsoft.com/downloads/details.aspx?FamilyID=262d25e3-f589-4842-8157-034d1e7cf3a3
  4. [CustomMessages]
  5. dotnetfx11_title=.NET Framework 1.1
  6. dotnetfx11_size=23.1 MB
  7. [Code]
  8. const
  9. dotnetfx11_url = 'http://download.microsoft.com/download/a/a/c/aac39226-8825-44ce-90e3-bf8203e74006/dotnetfx.exe';
  10. procedure dotnetfx11();
  11. begin
  12. if (IsX86() and not netfxinstalled(NetFx11, '')) then
  13. AddProduct('dotnetfx11.exe',
  14. '/q:a /c:"install /qb /l"',
  15. CustomMessage('dotnetfx11_title'),
  16. CustomMessage('dotnetfx11_size'),
  17. dotnetfx11_url,
  18. false, false, false);
  19. end;
  20. [Setup]