Windows Management Instrumentation (WMI)信息可能损坏错误修复
在 检察“本地连接”的属性,并切换到“高级”选项卡后,提示:“Windows不能显示此连接的属性。Windows Management Instrumentation(Windows打点体系布局组件WMI)信息可能损坏。要改正此问题,请使用系统还原将Windows还原到一个较早的 时间点……
解决要领:
具体操纵如下:第一步:右击“我的电脑”,选择“打点”菜单,依次定位到“计算机打点(本地)→处事和应用措施→处事”项,在右边窗口中找到“Windows Management Instrumentation”一项,,双击打开,在弹出的窗口中单击“遏制”按钮。
第二步:进入本地磁盘的C:\Windows\System32\Wbem\Repository目录,删除该目录下的所有文件后,从头启动计算机。登录后,系统会从头在该目录拷贝成立所需要的文件,并且自动启动适才遏制的WMI处事。
小提示.
该 故障是由于C:\Windows\System32\Wbem\Repository目录下的文件损坏引起的,WMI会在每30~60秒之间挪用该目录下 的文件,所以会收到上述错误提示信息。该故障还能引起的其他连锁反响有:无法检察“本地连接”的属性、运行msinfo32(检察系统信息)命令时系统无 响应、运行wmimgmt.msc命令打开WMI打点单元时系统提示“Failed to connect to local computer due to WMI:Generic failure”错误。
如果还是不行或者处事里根柢没有WMI这个的话:
打开记事本,将以下代码生存为*.bat(文件名任意,后缀名固定)文件,在安适模式下打开运行。
措施代码如下:
```
@echo on
cd /d c:\temp
if not exist %windir%\system32\wbem goto TryInstall
cd /d %windir%\system32\wbem
net stop winmgmt
winmgmt /kill
if exist Rep_bak rd Rep_bak /s /q
rename Repository Rep_bak
for %%i in (*.dll) do RegSvr32 -s %%i
for %%i in (*.exe) do call :FixSrv %%i
for %%i in (.mof,.mfl) do Mofcomp %%i
net start winmgmt
goto End
:FixSrv
if /I (%1) == (wbemcntl.exe) goto SkipSrv
if /I (%1) == (wbemtest.exe) goto SkipSrv
if /I (%1) == (mofcomp.exe) goto SkipSrv
%1 /RegServer
:SkipSrv
goto End
:TryInstall
if not exist wmicore.exe goto End
wmicore /s
net start winmgmt
:End
```
运行后,系统开始自动修复、修复完成后从头启动计算机,问题解决。
windows不能显示此连接属性。windows management instrumentation (WMI) 信息可能损坏 (转,经测试告成)