[问题记录.dotnet]取网卡信息报错"找不到"-WMI - Not found
异常:
System.Management.ManagementException: 找不到 在 System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode) 在 System.Management.ManagementObject.Initialize(Boolean getObject) 在 System.Management.ManagementBaseObject.get_wbemObject() 在 System.Management.ManagementBaseObject.get_ClassName() 在 System.Management.ManagementClass.GetInstances(EnumerationOptions options) |
现象:
某台机器之前使用正常,突然报这个错。 其他机器均正常。 |
解决:
1. 确保服务“Windows Management Instrumentation”开启。 2. 如果已经开启还是有问题,那么可能是WMI存储库损坏,需要重建WMI存储库。
要重建WMI存储库,(Win7等系统)步骤操作:
1.开始->所有程序->附件,以管理员身份打开命令提示符command 7.重新启动系统
8.重新安装自动更新成功 rundll32.exe setupapi,InstallHinfSection WBEM 132 %windir%\inf\wbemoc.inf 执行上面的命令后,可能会需要读取 Windodws 7/Windows 2008 R2 安装盘。 |
补充:重建WMI的批处理脚本
@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 将这段代码保存成 BAT格式的后 在服务器上运行 即可 |
分析:
导致错误的代码段
|
原因: System.Management 命名空间下的方式基本都是依赖WMI (Windows Management Instrumentation) 服务的,所以自然就联想到WMI的问题。然后去用工具或vbs脚本检验一下,基本就能确认了。 |