In this post, we will see how to prepare a slipstreamed installation of SQL Server 2008 RTM with its Service Pack 1.
What?
A slipstreamed version is in reality an installation package modified to integrate product updates such as service packs.
More and more Microsoft products allow to make this procedure and to be honest with you it becomes really simple to prepare slipstreamed package on your own.
Why?
I’m sure you already know why we do this kind of thing! Of course, it allows to deploy a product with its service pack integrated, so no need anymore to install the product and then the desired service pack. Products such as MOSS 2007 are very easy to slipstream thanks to a dedicated “updates” folder. Concerning SQL Server 2008, it is also quite simple.
Procedure step by step
IMPORTANT: this example uses the default language of SQL Server 2008 setup, so the English package. So if you use a localized setup, be careful to download the corresponding service pack and edit below commands according to your own needs.
SQLServer2008SP1-KB968369-IA64-ENU.exe /x:c:\SQLServer2008_FullSP1\PCU
SQLServer2008SP1-KB968369-x64-ENU.exe /x:c:\SQLServer2008_FullSP1\PCU
Server2008SP1-KB968369-x86-ENU.exe /x:c:\SQLServer2008_FullSP1\PCU
Now your slipstreamed installation of SQL Server 2008 SP1 is ready! You can use this installation on a shared folder on your network or to make an ISO for example
Vincent