28,655 questions
Hello, I recommend that you can try the following methods: Check the Service Status: Open the Run dialog box (Win + R), type “services.msc”, and hit Enter. Locate the service that’s causing the issue, right-click on it, and select Properties. Under the General tab, check the Service status. If it’s Running, click Stop, then OK. After a few moments, try to start the service again. Use SC command: Open a command prompt with administrative rights (search cmd in the start menu, right-click, run as administrator) Type the command “sc queryex [service name]” (replace [service name] with the name of the service you’re having trouble with). This will give you the PID of the service. Then type “taskkill /f /pid [PID]” (replace [PID] with the PID number you received from the previous command). This will forcefully stop the service. Try to start the service again. Use Task Manager: Press Ctrl + Shift + Esc to open Task Manager. Go to the Services tab, find the service that’s causing the problem. Right-click on it and select Stop. Once it has stopped, try to start it again. I also suggest that try to check for update, if any new update could be found, install it. Then check if the issue still insists. Best Regards, Hania Lian
If the Answer is helpful, please click "Accept Answer" and upvote it.