/////////////////////////////////////////////////
// Slipsteaming MSSQL Server 2005 SP2
// Author : Zealic
// Date : 2007-03-19
// Version : 1.01
/////////////////////////////////////////////////
var swap = "D:\\SWAP";
var sqldir = "D:\\MSSQL";
var sp2 = "D:\\SP2";
var server = sqldir + "\\Server\\Setup";
var tools = sqldir + "\\Tools\\Setup";
function testRun(runStr)
{
var wsh = new ActiveXObject("Wscript.Shell");
var sys32 = wsh.ExpandEnvironmentStrings("%WINDIR%\\System32");
wsh.CurrentDirectory = sys32;
var ret = WScript.Run(runStr,0,true);
if(ret != 0)fail();
return ret;
}
function exec(runStr)
{
var wsh = new ActiveXObject("Wscript.Shell");
var shell = wsh.ExpandEnvironmentStrings("%COMSPEC%");
return wsh.Run(shell + " /K " + runStr,0,true);
}
function fail()
{
WScript.Echo("Process fail !!!!!!!!!!!!!!!!!!!!!");
WScript.Echo("Please retry execute this script.");
WScript.Echo("Press 'Enter' to exit");
WScript.StdIn.ReadLine();
WScript.Quit();
}
function sucess()
{
WScript.Echo("Process OK!");
WScript.Echo("Press 'Enter' to exit");
WScript.StdIn.ReadLine();
WScript.Quit();
}
3)打包
打包为 ISO 或 RAR 待以后使用.
整合后大小约 1.98G,用ISO优化封装后为 1.39G
安装完成后,打开 Visual Studio 或 SQL Server SQL Management Studio,可以看到版本号为 9.00.3042.00
SQL Server 2005 版本号如下 :
ORIGIN : 9.00.1399.00
SP1 : 9.00.2047.07
SP2 : 9.00.3042.00