dotnetfx20lp.iss 1.0 KB

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