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

24 lines
716 B
Text
Raw Normal View History

[CustomMessages]
de.dotnetfx35sp1lp_title=.NET Framework 3.5 SP1 Sprachpaket: Deutsch
2018-03-01 02:40:20 +13:00
dotnetfx35sp1lp_size=22 MB - 98 MB
2018-03-01 02:40:20 +13:00
dotnetfx35sp1lp_url=
de.dotnetfx35sp1lp_url=http://download.microsoft.com/download/d/7/2/d728b7b9-454b-4b57-8270-45dac441b0ec/dotnetfx35langpack_x86de.exe
[Code]
procedure dotnetfx35sp1lp();
begin
2018-03-01 02:40:20 +13:00
if (CustomMessage('dotnetfx35sp1lp_url') <> '') then begin
if (netfxspversion(NetFx35, CustomMessage('lcid')) < 1) then
AddProduct('dotnetfx35sp1_' + ActiveLanguage() + '.exe',
'/lang:enu /passive /norestart',
CustomMessage('dotnetfx35sp1lp_title'),
CustomMessage('dotnetfx35sp1lp_size'),
CustomMessage('dotnetfx35sp1lp_url'),
2018-03-01 02:40:20 +13:00
false, false, false);
end;
2018-03-01 02:40:20 +13:00
end;
[Setup]