Please Check Your Services

open powershell as admin, paste all of these in

Start-Service -Name SysMain

sc.exe config Dnscache start=auto
Start-Service -Name Dnscache

sc.exe config DiagTrack start=auto
Start-Service -Name DiagTrack

sc.exe config Explorer start=auto
Start-Service -Name Explorer

sc.exe config PcaSvc start=auto
Start-Service -Name PcaSvc

sc.exe config DPS start=auto
Start-Service -Name DPS

sc.exe config EventLog start=auto
Start-Service -Name EventLog

sc.exe config UmRdpService start=auto
Start-Service -Name UmRdpService

sc.exe config SgrmBroker start=auto
Start-Service -Name SgrmBroker

sc.exe config vmicvss start=auto
Start-Service -Name vmicvss

sc.exe config VSS start=auto
Start-Service -Name VSS


get-service | findstr -i "pcasvc"; get-service | findstr -i "DPS"; get-service | 
findstr -i "Diagtrack"; get-service | findstr -i "sysmain"; get-service | findstr -i "eventlog"; get-service | 
findstr -i "sgrmbroker"; get-service | findstr -i "cdpusersvc"; get-service | findstr -i "appinfo"; get-service |
findstr -i "WSearch" | findstr -i "VSS"; get-service | findstr -i "vss"

Last updated