对于最新的WSS3 和MOSS上的更新补丁:
infrastructureupdateforwindowssharepointservices3.0-kb951695-fullfile-x86.exe 和 infrastructureupdateformicrosoftofficeservers-kb951297-fullfile-x86.exe 更新配置向导时候失败,提示:不支持对系统目录进行即席更新。
吓一大跳:打开MOSS主页:报:Server error http://go.microsoft.com/fwlink?LinkID=96177
Code
Resource retrieved id UpgradeBootstrapTaskDisplayName is 初始化升级序列
08/12/2008 09:53:55 6 INF Leaving function StringResourceManager.GetResourceString
08/12/2008 09:53:55 6 ERR Task 初始化升级序列 failed, so stopping execution of the engine
08/12/2008 09:53:55 6 INF Entering function StringResourceManager.GetResourceString
08/12/2008 09:53:55 6 INF Resource id to be retrieved is UpgradeBootstrapTaskFailConfigDisplayLabel for language Chinese (People's Republic of China)
08/12/2008 09:53:55 6 INF Resource retrieved id UpgradeBootstrapTaskFailConfigDisplayLabel is 未能初始化升级序列。
08/12/2008 09:53:55 6 INF Leaving function StringResourceManager.GetResourceString
08/12/2008 09:53:55 6 ERR 未能初始化升级序列。
未能升级 SharePoint 产品和技术。可在 C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\LOGS\Upgrade.log 中找到有关该故障的详细信息。
已引发类型为 System.Data.SqlClient.SqlException 的异常。其他异常信息: 不支持对系统目录进行即席更新。
配置选项 'show advanced options' 已从 0 更改为 1。请运行 RECONFIGURE 语句进行安装。
System.Data.SqlClient.SqlException: 不支持对系统目录进行即席更新。
配置选项 'show advanced options' 已从 0 更改为 1。请运行 RECONFIGURE 语句进行安装。
解决办法:
打开数据库查询分析器:
Code
USE master;
GO
EXEC sp_configure 'show advanced option', '1';
RECONFIGURE WITH OVERRIDE;
EXEC sp_configure;
再次走下配置向导,搞定!
下次补丁之前先备份阿!