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

25 lines
932 B
Plaintext

// requires Windows Server 2003 Service Pack 1, Windows Server 2008, Windows Vista, Windows XP Service Pack 2
// requires Windows Installer 3.1
// WARNING: express setup (downloads and installs the components depending on your OS) if you want to deploy it on cd or network download the full bootsrapper on website below
// http://www.microsoft.com/downloads/details.aspx?FamilyId=333325FD-AE52-4E35-B531-508D977D32A6
[CustomMessages]
dotnetfx35_title=.NET Framework 3.5
dotnetfx35_size=3 MB - 197 MB
[Code]
const
dotnetfx35_url = 'http://download.microsoft.com/download/7/0/3/703455ee-a747-4cc8-bd3e-98a615c3aedb/dotNetFx35setup.exe';
procedure dotnetfx35();
begin
if (netfxinstalled(NetFx35, '') = false) then
AddProduct('dotnetfx35' + GetArchitectureString() + '.exe',
'/lang:enu /passive /norestart',
CustomMessage('dotnetfx35_title'),
CustomMessage('dotnetfx35_size'),
dotnetfx35_url,
false, false);
end;