正常情况下,在安装完office之后,会在桌面右键---新建 菜单中有Word、Excel等选项,但由于杀毒软件或其他原因导致没有这几个选项,就需要手动添加。
这里以office 2003为例,通过导入注册表方式添加新建Word、Excel、PPT的选项。
1. Word(将如下代码保存为文本文档,修改后缀为.reg,执行即可)
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\.doc] @="Word.Document.8""Content Type"="application/msword" [HKEY_CLASSES_ROOT\.doc\PersistentHandler] @="{98DE59A0-D175-11CD-A7BD-00006B827D94}" [HKEY_CLASSES_ROOT\.doc\Word.Document.8] [HKEY_CLASSES_ROOT\.doc\Word.Document.8\ShellNew] "FileName"="winword8.doc"
2. Excel(将如下代码保存为文本文档,修改后缀为.reg,执行即可)
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\.xls] @="Excel.Sheet.8""Content Type"="application/vnd.ms-excel" [HKEY_CLASSES_ROOT\.xls\Excel.Sheet.8] @="" [HKEY_CLASSES_ROOT\.xls\Excel.Sheet.8\ShellNew] "FileName"="excel9.xls" [HKEY_CLASSES_ROOT\.xls\PersistentHandler] @="{98DE59A0-D175-11CD-A7BD-00006B827D94}"
3. powerpoint(将如下代码保存为文本文档,修改后缀为.reg,执行即可)
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\.ppt] @="PowerPoint.Show.8""Content Type"="application/vnd.ms-powerpoint" [HKEY_CLASSES_ROOT\.ppt\PersistentHandler] @="{98DE59A0-D175-11CD-A7BD-00006B827D94}" [HKEY_CLASSES_ROOT\.ppt\PowerPoint.Show.8] [HKEY_CLASSES_ROOT\.ppt\PowerPoint.Show.8\ShellNew] "FileName"="pwrpnt11.pot"
附制作好的注册表文件,可直接下载导入即可
下载地址:注册表文件.rar