ShareX/ShareX.Setup/InnoSetup/Scripts/products/dotnetfx11lp.iss

24 lines
666 B
Text
Raw Normal View History

[CustomMessages]
de.dotnetfx11lp_title=.NET Framework 1.1 Sprachpaket: Deutsch
2018-03-01 02:40:20 +13:00
dotnetfx11lp_size=1.4 MB
2018-03-01 02:40:20 +13:00
dotnetfx11lp_url=
de.dotnetfx11lp_url=http://download.microsoft.com/download/6/8/2/6821e687-526a-4ef8-9a67-9a402ec5ac9e/langpack.exe
[Code]
procedure dotnetfx11lp();
begin
2018-03-01 02:40:20 +13:00
if (CustomMessage('dotnetfx11lp_url') <> '') then begin
if (IsX86() and not netfxinstalled(NetFx11, CustomMessage('lcid'))) then
AddProduct('dotnetfx11' + ActiveLanguage() + '.exe',
'/q:a /c:"inst.exe /qb /l"',
CustomMessage('dotnetfx11lp_title'),
CustomMessage('dotnetfx11lp_size'),
CustomMessage('dotnetfx11lp_url'),
2018-03-01 02:40:20 +13:00
false, false, false);
end;
end;
2018-03-01 02:40:20 +13:00
[Setup]