問題1: Window server 管理控制台角色和功能刷新失敗?
解決辦法:
查看關鍵服務: windows Modules Installer 服務必須開啟

問題2: WMI 服務無法啟動?
解決辦法:
我們通過修復腳本進行修復,將下面腳本複製到txt 裏面,把文件保存成 .bat 運行
@echo on
cd /d c:temp
if not exist %windir%system32wbem goto TryInstall
cd /d %windir%system32wbem
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
問題3: 如何查看計算機SID值和netbios 值
Whoami /user

查看計算機netbios 值:
Nbtstat -n

原創文章,作者:投稿專員,如若轉載,請註明出處:https://www.506064.com/zh-hk/n/230985.html