【解决办法--OS0001】:修复WMI服务
方法1
重建损坏的Windows Management Instrumentation(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 Repbak rd Repbak /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格式,之后在服务器上运行即可
方法二
【解决办法--OS0002】:修改注册表
解决方法:
在window中打开功能里输入regedit
,之后按回车打开注册表编辑器;
进入如下路径中
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy
将 enable设置为0 即可。
解决办法转自链接: https://www.cnblogs.com/527289276qq/p/7001816.html