Changes

Jump to: navigation, search

Microsoft .NET Framework

56 bytes added, 15:17, 6 August 2013
m
Microsoft .NET Framework 4.5: Added sub-headings and make easier to read
"The .NET Client Profile is a subset of the .NET Framework that was provided with .NET Framework 4 and earlier versions and was optimized for client applications. The .NET Framework 4 and earlier versions provided two deployment options: the full .NET Framework and the Client Profile. The Client Profile enabled faster deployment and smaller app installation packages than the full .NET Framework.
Starting with the .NET Framework 4.5, the Client Profile has been discontinued and only the full redistributable package is available. Optimizations provided by the .NET Framework 4.5, such as smaller download size and faster deployment, have eliminated the need for a separate deployment package." - http://msdn.microsoft.com/en-us/library/cc656912.aspx
 
==Full Installer==
<source lang="xml">
<packages>
<package id="dotnetfx45" name="Microsoft .NET Framework 4.5" revision="1" priority="0" >
 
<check type='logical' condition='or'>
<check type="uninstall" condition="exists" path="Microsoft .NET Framework 4.5" />
</check>
 
<install cmd='xcopy "%SOFTWARE%\net\dotNetFx45_Full_x86_x64.exe" c:\dotNetInstallers\ /c /r /y /q' />
 
<install cmd='c:\dotNetInstallers\dotNetFx45_Full_x86_x64.exe /norestart /passive' >
<exit code="0" />
<exit code="3010" reboot="true" />
</install>
 
<install cmd='%comspec% /c del /S /Q "c:\dotNetInstallers" > nul' />
</package>
 
</source>
 
==Language Pack==
 
<source lang="xml">
<package id="dotnetfx45lp" name="Microsoft .NET Framework 4.5 Language Pack DE" revision="1" priority="0" >
 
<depends package-id="dotnetfx45"/>
 
<check type='logical' condition='or'>
<check type="uninstall" condition="exists" path="Microsoft .NET Framework 4.5 DEU Language Pack" />
</check>
 
<install cmd='xcopy "%SOFTWARE%\net\dotNetFx45LP_Full_x86_x64de.exe" c:\dotNetInstallers\ /c /r /y /q' />
 
<install cmd='c:\dotNetInstallers\dotNetFx45LP_Full_x86_x64de.exe /norestart /passive' >
<exit code="0" />
<exit code="3010" reboot="true" />
</install>
 
<install cmd='%comspec% /c del /S /Q "c:\dotNetInstallers" > nul' />
</package>
 
</packages>
</source>
577
edits

Navigation menu