123456789101112131415161718192021222324252627 |
- ; http://www.microsoft.com/downloads/details.aspx?familyid=92E0E1CE-8693-4480-84FA-7D85EEF59016
- [CustomMessages]
- de.dotnetfx20lp_title=.NET Framework 2.0 Sprachpaket: Deutsch
- dotnetfx20lp_size=1.8 MB
- dotnetfx20lp_url=
- de.dotnetfx20lp_url=http://download.microsoft.com/download/2/9/7/29768238-56c3-4ea6-abba-4c5246f2bc81/langpack.exe
- de.dotnetfx20lp_url_x64=http://download.microsoft.com/download/2/e/f/2ef250ba-a868-4074-a4c9-249004866f87/langpack.exe
- de.dotnetfx20lp_url_ia64=http://download.microsoft.com/download/8/9/8/898c5670-5e74-41c4-82fc-68dd837af627/langpack.exe
- [Code]
- procedure dotnetfx20lp();
- begin
- if (CustomMessage('dotnetfx20lp_url') <> '') then begin
- if (not netfxinstalled(NetFx20, CustomMessage('lcid'))) then
- AddProduct('dotnetfx20' + GetArchitectureString() + '_' + ActiveLanguage() + '.exe',
- '/passive /norestart /lang:ENU',
- CustomMessage('dotnetfx20lp_title'),
- CustomMessage('dotnetfx20lp_size'),
- CustomMessage('dotnetfx20lp_url' + GetArchitectureString()),
- false, false, false);
- end;
- end;
- [Setup]
|