Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1733983
  • 博文数量: 234
  • 博客积分: 4966
  • 博客等级: 上校
  • 技术积分: 3322
  • 用 户 组: 普通用户
  • 注册时间: 2006-11-13 01:03
文章分类

全部博文(234)

文章存档

2017年(2)

2016年(1)

2015年(8)

2014年(11)

2013年(44)

2012年(27)

2011年(22)

2010年(30)

2009年(37)

2008年(6)

2007年(45)

2006年(1)

分类: WINDOWS

2011-02-14 14:31:53

最近由于由于给客户端下派office补丁导致大量客户计算机office组件无法正常使用,弹出某个文件定位的一个提示窗口,造成该问题的主要原因是由于office后续的核心组件或者关键组件更新时需要使用到源安装路径或者源安装光盘或者源安装缓存(MSOcache)。如果源路径不存在或者缓存丢失,就造成上述现象。
 
如何避免上述问题或者发生之后如何解决?
1.安装完office后,再最后完成的那一页不要选择删除“安装缓存”,安装缓存会存放在剩余空间最大的分区中,命名为MSOcache(隐藏文件)。如果保存了安装缓存将不会造成上述问题。
 
2.如果公司的客户端全部是做的ghost镜像并且没有保留缓存,那就只有使用组策略下派脚本来批量解决问题了。
解决思路:修改注册表中的office缓存文件定位路径。
 
office注册表路径:
HKEY_CLASSES_ROOT\Installer\Products\*
其中*为一个字符串值,例如
4080110900063D11C8EF10054038389C或9040110900063D11C8EF10054038389C
 
复制以下代码为OfficeSource.vbs,然后通过组策略下发。
 
On Error Resume Next
Const HKEY_CLASSES_ROOT = &H80000000
strComputer = "."
strFilePath = ""  '定义office网络安装路径
Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\default:StdRegProv")
strKeyPath = "Installer\Products"
oReg.EnumKey HKEY_CLASSES_ROOT, strKeyPath, arrStrings
 
'从注册表strKeyPath键值下查询产品Microsoft Office 2000 SR-1 Professional和Microsoft Office Professional Edition 2003并定位安装路径
 
For i=0 To UBound(arrStrings)
strValueName = "ProductName"
strkeypath1 = "Installer\Products\" & arrStrings(i)
oReg.GetStringValue HKEY_CLASSES_ROOT, strkeypath1, strValueName, strValue1
If InStr(strValue1, "Microsoft Office 2000 SR-1 Professional") Then
strkeypath2 = strKeyPath1
strOffVer = "Office2000\"
strFullPath = strFilePath & strOffVer
strfile = "DATA1.MSI"
End If
If InStr(strValue1, "Microsoft Office Professional Edition 2003") Then
strkeypath2 = strKeyPath1
strOffVer = "Office2003\"
strFullPath = strFilePath & strOffVer
strfile = "PRO11.MSI"
End If
Next
 
'根据不同语言定位安装路径,只包含简、繁、英、日四种。
strKeyPath3 = strKeyPath2
strValueName3 = "Language"
oReg.GetDWORDValue HKEY_CLASSES_ROOT,strKeyPath3,strValueName3,dwValue3
If dwValue3 = "2052" Then
 strLang = "CN\"
 strKeyPath4 = strKeyPath3 & "\" & "SourceList"
 strValueName4 = "LastUsedSource"
 strValue4 = "n;1;" & strFullPath & strLang
 oReg.SetExpandedStringValue HKEY_CLASSES_ROOT,strKeyPath4,strValueName4,strValue4
 strKeyPath5 = strKeyPath3 & "\" & "SourceList"
 strValueName5 = "PackageName"
 strValue5 = strfile
 oReg.SetStringValue HKEY_CLASSES_ROOT,strKeyPath5,strValueName5,strValue5
 strKeyPath6 = strKeyPath3 & "\" & "SourceList"  & "\" & "Net"
 strValueName6 = "1"
 strValue6 = strFullPath & strLang
 oReg.SetExpandedStringValue HKEY_CLASSES_ROOT,strKeyPath6,strValueName6,strValue6
Elseif dwValue3 = "1028" Then
 strLang = "TC\"
 strKeyPath4 = strKeyPath3 & "\" & "SourceList"
 strValueName4 = "LastUsedSource"
 strValue4 = "n;1;" & strFullPath & strLang
 oReg.SetExpandedStringValue HKEY_CLASSES_ROOT,strKeyPath4,strValueName4,strValue4
 strKeyPath5 = strKeyPath3 & "\" & "SourceList"
 strValueName5 = "PackageName"
 strValue5 = strfile
 oReg.SetStringValue HKEY_CLASSES_ROOT,strKeyPath5,strValueName5,strValue5
 strKeyPath6 = strKeyPath3 & "\" & "SourceList"  & "\" & "Net"
 strValueName6 = "1"
 strValue6 = strFullPath & strLang
 oReg.SetExpandedStringValue HKEY_CLASSES_ROOT,strKeyPath6,strValueName6,strValue6
Elseif dwValue3 = "1041" Then
 strLang = "JP\"
 strKeyPath4 = strKeyPath3 & "\" & "SourceList"
 strValueName4 = "LastUsedSource"
 strValue4 = "n;1;" & strFullPath & strLang
 oReg.SetExpandedStringValue HKEY_CLASSES_ROOT,strKeyPath4,strValueName4,strValue4
 strKeyPath5 = strKeyPath3 & "\" & "SourceList"
 strValueName5 = "PackageName"
 strValue5 = strfile
 oReg.SetStringValue HKEY_CLASSES_ROOT,strKeyPath5,strValueName5,strValue5
 strKeyPath6 = strKeyPath3 & "\" & "SourceList"  & "\" & "Net"
 strValueName6 = "1"
 strValue6 = strFullPath & strLang
 oReg.SetExpandedStringValue HKEY_CLASSES_ROOT,strKeyPath6,strValueName6,strValue6
Elseif dwValue3 = "1033" Then
 strLang = "EN\"
 strKeyPath4 = strKeyPath3 & "\" & "SourceList"
 strValueName4 = "LastUsedSource"
 strValue4 = "n;1;" & strFullPath & strLang
 oReg.SetExpandedStringValue HKEY_CLASSES_ROOT,strKeyPath4,strValueName4,strValue4
 strKeyPath5 = strKeyPath3 & "\" & "SourceList"
 strValueName5 = "PackageName"
 strValue5 = strfile
 oReg.SetStringValue HKEY_CLASSES_ROOT,strKeyPath5,strValueName5,strValue5
 strKeyPath6 = strKeyPath3 & "\" & "SourceList"  & "\" & "Net"
 strValueName6 = "1"
 strValue6 = strFullPath & strLang
 oReg.SetExpandedStringValue HKEY_CLASSES_ROOT,strKeyPath6,strValueName6,strValue6
End If
阅读(1748) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2011-03-06 17:55:40

很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com