Thoughts about setup and deployment issues, WiX, XNA, the .NET Framework and Visual Studio
All postings are provided AS IS with no warranties, and confer no rights. Additionally, views expressed herein are my own and not those of my employer, Microsoft.
I recently posted a set of instructions for creating an administrative install point for the .NET Framework 2.0 SP1. In that post, I mentioned some behind-the-scenes architectural changes that affect how the installer works. Those architectural changes were also made for the .NET Framework 3.0 SP1, and as a result, there is a new set of instructions that must be followed in order to create an administrative install point for the .NET Framework 3.0 SP1 as well.
The following are some steps that can be used to create an administrative install point for the .NET Framework 3.0 SP1 for each of the supported processor architectures.
Please keep in mind that there are several prerequisites that must be installed prior to attempting to deploy the .NET Framework 3.0 SP1 from an administrative install point. These include the .NET Framework 2.0 SP1, MSXML 6.0, the RGB Rasterizer, the Windows Imaging Component (WIC) and the XML Paper Specification (XPS) shared components. The .NET Framework 2.0 SP1 can be deployed using the steps in my previous blog post, and the other prerequisites can be deployed using the previously documented steps in the .NET Framework 3.0 deployment guide. There is a new .NET Framework 3.5 deployment guide that is currently in the process of being published that will include this type of information, and I will provide an additional link to that document once it is available on MSDN.
To create an administrative install point for the .NET Framework 3.0 SP1 x86:
With these steps, you will have an administrative install point for the .NET Framework 3.0 SP1 x86 located at c:\netfx30sp1\x86AIP. You can then install the MSI directly using a command line like the following:
msiexec.exe /i c:\netfx30sp1\x86\AIP\netfx30a_x86.msi /l*v %temp%\netfx30sp1x86log.txt /qb VSEXTUI=1
You can adjust the parameters as needed if you want a fully silent install instead of basic UI, or want to use any other standard Windows Installer command line parameters.
To create an administrative install point for the .NET Framework 3.0 SP1 x64:
With these steps, you will have an administrative install point for the .NET Framework 3.0 SP1 x64 located at c:\netfx30sp1\x64\AIP. You can then install the MSI directly using a command line like the following:
msiexec.exe /i c:\netfx30sp1\x64\AIP\netfx30a_x64.msi /l*v %temp%\netfx30sp1x64log.txt /qb VSEXTUI=1
<update date="1/23/2008"> Added example command lines to install the MSI directly after creating the administrative install point. </update>
<update date="1/23/2008"> Corrected the download link in the x64 instructions. </update>
PingBack from http://msdnrss.thecoderblogs.com/2007/12/20/creating-an-administrative-install-point-for-the-net-framework-30-sp1/
PingBack from http://running.knowledgeshare.info/creating-an-administrative-install-point-for-the-net-framework/
Since the .NET Framework 3.5 shipped, I've written a few blog posts about some of the setup and deployment
The official deployment guides for system administrators and application developers have been posted
Since the .NET Framework 2.0 SP1 and 3.0 SP1 shipped (as prerequisites for the .NET Framework 3.5 and
PingBack from http://msdnrss.thecoderblogs.com/2008/02/19/how-to-perform-a-silent-repair-and-uninstall-of-the-net-framework-20-sp1-and-30-sp1/
PingBack from http://www.hilpers.com/1246750-net-framework-3-0-entfernen
A while back, I posted some instructions that can be used to create an administrative install point for
Unattended Installation for the .NET Framework 3.5