Below PowerShell Script help to Fix the WMI issue.
Stop-Service Winmgmt -Force -ErrorAction SilentlyContinue
Start-Sleep -Seconds 20
$status = $null
Do
{
$status = (Get-Service -Name Winmgmt).Status
}
While ($status -notlike "*Stopped*")
Rename-Item -Path C:\Windows\System32\wbem\repository -NewName 'Repository.old1' -Force -ErrorAction SilentlyContinue
Start-Sleep -Seconds 20
Start-Service -Name Winmgmt
No comments:
Post a Comment