如果DCOM Server Process Launcher服务被禁用,启动Word时将出现无法注册这篇文档,不能创建从其它文档到这篇文档的链接的提示框。

启动Word“无法注册这篇文档,不能创建从其它文档到这篇文档的链接”_链接

 

方法

 

1.运行“services.msc”: 

2.找到并双击打开“DCOM Server Process Launcher”服务。 

3.启动类型选择自动,应用。 

4.再单击服务状态下的启动按钮,确定后OK。

 

 

方法二 

 

 

如果以上的方法都不能无效的话,可尝试以下批处理,新建空白文档,将以下代码复制进入,并保存为bat文件。

@echo off

setlocal

@echo %WINDIR%\System32\msdtc.exe -uninstall

%WINDIR%\System32\msdtc.exe -uninstall

call :delkey "HKCR\CID"

call :delkey "HKLM\SYSTEM\CurrentControlSet\Services\MSDTC"

call :delkey "HKLM\SYSTEM\ControlSet001\Services\MSDTC"

call :delkey "HKLM\SYSTEM\ControlSet002\Services\MSDTC"

call :delkey "HKLM\Software\Microsoft\MSDTC"

@echo %WINDIR%\System32\msdtc.exe -install

%WINDIR%\System32\msdtc.exe -install

endlocal

goto :EOF

:delkey

set key=%1

call :delkeyq %key% >nul 2>&1

@echo. 

goto :EOF

:delkeyq

REG DELETE %key% /F