Changes

Jump to: navigation, search

Microsoft .NET Framework

140 bytes added, 19:10, 19 February 2008
m
no edit summary
This is a silent installer for Microsoft .NET Framework. Download [http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=262D25E3-F589-4842-8157-034D1E7CF3A3 here]
<source lang="xml"><package id="dotnet112k" name="Microsoft .NET Framework 1.1">
<!-- Microsoft .NET Framework Version 1.1 Redistributable Package -->
<check type="file" condition="exists" path="%Windir%\Microsoft.NET\Framework\sbscmp10.dll" />
<exit code="3010" reboot="true" />
</install>
</package></source>
Another way to run the .NET installer:
Extract the contents of dotnetfx.exe, and then invoke the install directly (this also saves a bit of time for the clients)
<source lang="xml"><package id="dotnet112k" name="Microsoft .NET Framework 1.1">
<!-- Microsoft .NET Framework Version 1.1 Redistributable Package -->
<check type="file" condition="exists" path="%Windir%\Microsoft.NET\Framework\sbscmp10.dll" />
<exit code="3010" reboot="true" />
</install>
</package></source>
And Microsoft .NET Framework 1.1 Service Pack 1 (download [http://www.microsoft.com/downloads/details.aspx?familyid=A8F5654F-088E-40B2-BBDB-A83353618B38&displaylang=en here]):
<source lang="xml"><package id="dotnet11sp12k" name="Microsoft .NET Framework 1.1 Service Pack 1">
<!-- Microsoft .NET Framework 1.1 Service Pack 1 -->
<check type="registry" condition="exists" path="HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\SP" />
<exit code="3010" reboot="true" />
</install>
</package> </source>
=Microsoft .NET Framework 2.0=
<source lang="xml"><package id="dotnet20" name="Microsoft .NET Framework 2.0">
<check type="uninstall" condition="exists" path="Microsoft .NET Framework 2.0" />
<install cmd='%SOFTWARE%\updates\common\enu\dotnetfx2.exe /q /c:"install /q"' >
<exit code="3010" reboot="true" />
</install>
</package></source> 
=Microsoft .NET Framework 2.0 language pack=
Replace DEU with whatever language pack you will be installing:
<source lang="xml"><package id="dotnet20lp" name="Microsoft .NET Framework 2.0 Language Pack">
<check type="uninstall" condition="exists" path="Microsoft .NET Framework 2.0 Language Pack - DEU" />
<install cmd='%SOFTWARE%\updates\common\enu\langpackfx2.exe /q /c:"install /q"' />
</package></source>
[[Category:Silent Installers]]

Navigation menu