dotnetfx11lp.iss 666 B

1234567891011121314151617181920212223
  1. [CustomMessages]
  2. de.dotnetfx11lp_title=.NET Framework 1.1 Sprachpaket: Deutsch
  3. dotnetfx11lp_size=1.4 MB
  4. dotnetfx11lp_url=
  5. de.dotnetfx11lp_url=http://download.microsoft.com/download/6/8/2/6821e687-526a-4ef8-9a67-9a402ec5ac9e/langpack.exe
  6. [Code]
  7. procedure dotnetfx11lp();
  8. begin
  9. if (CustomMessage('dotnetfx11lp_url') <> '') then begin
  10. if (IsX86() and not netfxinstalled(NetFx11, CustomMessage('lcid'))) then
  11. AddProduct('dotnetfx11' + ActiveLanguage() + '.exe',
  12. '/q:a /c:"inst.exe /qb /l"',
  13. CustomMessage('dotnetfx11lp_title'),
  14. CustomMessage('dotnetfx11lp_size'),
  15. CustomMessage('dotnetfx11lp_url'),
  16. false, false, false);
  17. end;
  18. end;
  19. [Setup]