Non-Responsive Service
To stop a non-responsive service:
Click the Start menu.
Click Run or in the search bar type services.msc.
Press Enter.
Look for the service and check the Properties and identify its service name.
Once found, open a command prompt; type
sc queryex [servicename]
Press Enter.
Identify the PID.
In the same command prompt type
taskkill /pid [pid number] /f
Press Enter.
POWERSHELL:
Stop-process -ID $(Get-WmiObject -Class win32_service -Filter “name = ‘ADSync’”).processid