WMI 异常问题,重置WMI

简介: 分享一个WMI 异常问题,重置WMI的案例

作者:棋玉

问题现象:

1.系统属性显示不可用
image.png

2.msinfo32 提示不能访问WMI
image.png

修复方案:

注:以下操作可能会对客户环境产生影响,建议客户先进行快照
windows Server 2008R2
右击cmd,选择以管理员身份运行,运行以下命令行:

sc config winmgmt start= disabled
net stop winmgmt /y
cd %windir%\system32\wbem
rename repository repository.old
for /f %s in ('dir /b *.dll') do regsvr32 /s %s
wmiprvse /regserver 
sc config winmgmt start= auto
net start winmgmt
for /f %s in ('dir /b *.mof *.mfl') do mofcomp %s

Windows Server 2012及以后版本
右击cmd,选择以管理员身份运行,运行以下命令行:

sc config winmgmt start= disabled
net stop winmgmt /y
%systemdrive%
cd %windir%\system32\wbem
ren repository repository-backup
for /f %s in ('dir /b *.dll') do regsvr32 /s %s
sc config winmgmt start= Auto
net start winmgmt
dir /b *.mof *.mfl | findstr /v /i uninstall > moflist.txt & for /F %s in (moflist.txt) do mofcomp %s
相关文章
|
API Windows
PetitPotam——另一种方式触发Windows主机认证
PetitPotam——另一种方式触发Windows主机认证
|
3月前
|
Oracle 关系型数据库 数据库
[windows]远程桌面失败提示CredSSP加密修正
[windows]远程桌面失败提示CredSSP加密修正
1028 6
|
存储 网络协议 API
WMI介绍和实例使用
Windows Management Instrumentation 大多会被翻译为“Windows管理规范”,Instrumentation 含义为仪器仪表、器乐谱写等......
402 0
WMI介绍和实例使用