How to slipstream SP1 for .Net 1.1
Hey all, have you ever wanted the .Net Framework, SP1 and the ASP Patch all in one package. Here are the steps you can follow to use Windows Installer command line tool to create an installable package that includes the .NET Framework, Service Pack 1 and the ASP patch.
1.) Download the .NET Framework 1.1
2.) Extract the contents of the .NET Framework to a folder - you can do this by
running dotnetfx.exe /t:c:\temp /c
3.) Download the .NET Framework 1.1 SP1
4.) Extract the service pack MSP package to a folder by running
NDP1.1sp1-KB867460-X86.exe /Xp:c:\temp\sp1.msp
5.) Download the ASP Patch to SP1
6.) Extract the ASP Patch MSP package to a folder by running
NDP1.1sp1-KB886903-X86.exe /Xp:c:\temp\asp.msp.
7.) Run msiexec.exe /a c:\temp\netfx.msi TARGETDIR=c:\temp\netfx
8.) Run msiexec /p c:\temp\sp1.msp /a c:\temp\netfx\netfx.msi
9.) Run msiexec /p c:\temp\asp.msp /a c:\temp\netfx\netfx.msi
You have now created a new netfx.msi, in c:\temp\netfx. You can now run your setup from this folder or you could take all of the contents of c:\temp\netfx, and compress it into a SFX archive. In the SFX archive options set the extraction to silent and run netfx.msi /qb after extraction.
Enjoy.