123456789101112131415161718192021222324252627 |
- ; 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
- ; requires Windows Installer 3.1
- ; requires Internet Explorer 5.01
- ; 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
- ; http://www.microsoft.com/downloads/en/details.aspx?FamilyID=5765d7a8-7722-4888-a970-ac39b33fd8ab
- [CustomMessages]
- dotnetfx40client_title=.NET Framework 4.0 Client
- dotnetfx40client_size=3 MB - 197 MB
- [Code]
- const
- dotnetfx40client_url = 'http://download.microsoft.com/download/7/B/6/7B629E05-399A-4A92-B5BC-484C74B5124B/dotNetFx40_Client_setup.exe';
- procedure dotnetfx40client();
- begin
- if (not netfxinstalled(NetFx40Client, '')) then
- AddProduct('dotNetFx40_Client_setup.exe',
- '/lcid ' + CustomMessage('lcid') + ' /passive /norestart',
- CustomMessage('dotnetfx40client_title'),
- CustomMessage('dotnetfx40client_size'),
- dotnetfx40client_url,
- false, false, false);
- end;
- [Setup]
|