一招解决“windows无法启动windows Eventlog服务。错误4201"的问题
去这里下载:
http://download.csdn.net/detail/csd49/9723968 “Unlocker V1.8.9 完全汉化纯净安装版”。将此带卸载程序的Unlocker V1.8.9 完全汉化纯净安装版安装。
然后找到下面的
C:\Windows\System32\LogFiles\WMI\RtBackup文件夹。
鼠标右键单击“RtBackup”选中里面unlocker.稍等出来一个窗口,在窗口左边可见“无动作”这时点右边的下拉箭头,在里面有“重命名”“删除”“移动”点“重命名”将“RtBackup”重命名为任何名字后,重启系统。至关重要!!
重启后发现系统已经新建了一个“RtBackup”文件夹,此时用上述方法将原来重命名的那个文件夹删除即可。打开事件查看器后,则会发现事件查看器已经正常。
注意若是“MMC”无法启动或无法创建的话,则还需修复MMC并启动win7的修复(放入启动或修复光盘)。待修复后重启则会完全正常。
将下面的代码复制黏贴到记事本后,另存为一个名为: 修复MMC.bat 然后再打开此修复MMC.bat 文件,再看是否已经修复好了。若没有修复,则重启计算机进入修复(可放入修复光盘或安装盘)待修复后重启即可!
@echo off
REM RegisterAdminPak.cmd
REM (c) 2006 Microsoft Corporation. All rights reserved.
set filelist=adprop.dll azroles.dll azroleui.dll ccfg95.dll
set filelist=%filelist% certadm.dll certmmc.dll certpdef.dll certtmpl.dll
set filelist=%filelist% certxds.dll cladmwiz.dll clcfgsrv.dll clnetrex.dll
set filelist=%filelist% cluadmex.dll cluadmmc.dll cmproxy.dll cmroute.dll
set filelist=%filelist% cmutoa.dll cnet16.dll debugex.dll dfscore.dll
set filelist=%filelist% dfsgui.dll dhcpsnap.dll dnsmgr.dll domadmin.dll
set filelist=%filelist% dsadmin.dll dsuiwiz.dll imadmui.dll lrwizdll.dll
set filelist=%filelist% mprsnap.dll msclus.dll mstsmhst.dll mstsmmc.dll
set filelist=%filelist% nntpadm.dll nntpapi.dll nntpsnap.dll ntdsbsrv.dll
set filelist=%filelist% ntfrsapi.dll rasuser.dll rigpsnap.dll rsadmin.dll
set filelist=%filelist% rscommon.dll rsconn.dll rsengps.dll rsjob.dll
set filelist=%filelist% rsservps.dll rsshell.dll rssubps.dll rtrfiltr.dll
set filelist=%filelist% schmmgmt.dll tapisnap.dll tsuserex.dll vsstskex.dll
set filelist=%filelist% w95inf16.dll w95inf32.dll winsevnt.dll winsmon.dll
set filelist=%filelist% winsrpc.dll winssnap.dll ws03res.dll
for %%i in (%filelist%) do (
echo Registering %%i ...
regsvr32 /s %%i
)
echo.
Echo Command Completed