Microsoft .NET Framework 2
Deployment of Microsoft .NET Framework 2.0 SP2 x86 using Active Directory. Microsoft Windows Installer 3.1 must already be deployed. 1. Download dotnetfx35.exe from http://download.microsoft.… Read More
Found on Aaron Stebner's Blog That means that if you want to install the .NET Framework 2.0 and create a log file in a path with spaces you need to use a command line like the following: do… Read More
To deploy only the MSI without a command line do the following: 1. Extract the contents of the setup package - dotnetfx.exe /t:c:\temp /c (or you can substitute any path of your choosing… Read More
*** Create a MST for MS .NET Framework v2.0. The recipe: 1) Create a Admin Install (DotNetFx.exe /c:"MsiExec.exe /a NetFx.msi TARGETDIR=[Path] /l* DotNetFx_Admin.log" /q) --- 2) Make a backup c… Read More
An easy way of installing .NET Framework 2.0 is using the double wrapper method: First you wrap dotnetfx, Second you wrap netfx.msi with install.exe. dotnetfx.exe /q /c:"install.exe /v/qb-" (T… Read More
The commands given here are for the 32bit version, but should be the same for the 64. Extract installation from download file: dotnetfx.exe /c /t:<ExtractToPath> Install command lin… Read More
.Net 2.0 Silent Uninstall: "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft .NET Framework 2.0\install.exe" /qu Read More
To deploy this via Group Policy with Active Directory here's the method I used... Download "Microsoft .NET Framework Version 2.0 Redistributable Package (x86)" from http://www.microsoft.com/d… Read More
The command-line options for the Windows Installer 3.1 package didn't recognise the switches mentioned above in upper-case. I had to specify them in lower case -ie, WindowsInstaller-KB893803-v… Read More
Download Location: http://www.microsoft.com/downloads/details.aspx?FamilyID= 0856eacb-4362-4b0d-8edd-aab15c5e04f5&displaylang=en Download and decompress the package to a folder with WinRAR or … Read More
This is how I did it. Downloaded dotnetfx.exe. Extracted the file by making an admin install. <path>\dotnetfx.exe /T:<path>\dotnet2 /C Edited netfx.msi with Orca and added the property REBOOT=… Read More