Difference between revisions of "Microsoft .NET Framework"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Added second method for .net installer)
Line 1: Line 1:
This is a silent installer for Microsoft .NET Framework.
+
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]
  
 
  <package id="dotnet112k" name="Microsoft .NET Framework 1.1">
 
  <package id="dotnet112k" name="Microsoft .NET Framework 1.1">
Line 26: Line 26:
  
  
And Microsoft .NET Framework 1.1 Service Pack 1:
+
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]):
  
 
  <package id="dotnet11sp12k" name="Microsoft .NET Framework 1.1 Service Pack 1">
 
  <package id="dotnet11sp12k" name="Microsoft .NET Framework 1.1 Service Pack 1">

Revision as of 13:10, 7 August 2006

This is a silent installer for Microsoft .NET Framework. Download here

<package id="dotnet112k" name="Microsoft .NET Framework 1.1">
<check type="file" condition="exists" path="%Windir%\Microsoft.NET\Framework\sbscmp10.dll" />
<install cmd='\\server\share\updates\common\enu\dotnetfx.exe /q /c:\"install /q\"' >
<exit code="194" reboot="true" />
<exit code="1603" />
<exit code="3010" reboot="true" />
</install>
</package>

Another way to run the .NET installer (I was getting the error "command failed: \"install /q\"" with the above):

Extract the contents of dotnetfx.exe, and then invoke the install directly (this also saves a bit of time for the clients)

<package id="dotnet112k" name="Microsoft .NET Framework 1.1">
<check type="file" condition="exists" path="%Windir%\Microsoft.NET\Framework\sbscmp10.dll" />
<install cmd='\\server\share\updates\common\enu\install /q' >
<exit code="194" reboot="true" />
<exit code="1603" />
<exit code="3010" reboot="true" />
</install>
</package>


And Microsoft .NET Framework 1.1 Service Pack 1 (download here):

<package id="dotnet11sp12k" name="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" />
<install cmd='\\server\share\updates\common\NDP1.1sp1-KB867460-X86.exe /q /i' >
<exit code="194" reboot="true" />
<exit code="1603" />
<exit code="3010" reboot="true" />
</install>
</package>