How to Export List of Running and Stopped Services in Windows 10?

  • 5 years ago
How to Export List of Running and Stopped Services in Windows 10?

In order to export all running and stopped services, open command prompt, and run the command below:-

sc query type= service state= all > "%UserProfile%\Desktop\All_Running_Services.txt"


In order to export all running services, open command prompt, and run the command below:-

sc query type= service > "%UserProfile%\Desktop\Running_Services.txt"


In order to export all stopped services, open command prompt, and run the command below:-

sc query type= service state= inactive > "%UserProfile%\Desktop\Stopped_Services.txt"


Thanks for watching, please like and subscribe

==============================================

https://www.facebook.com/HowtoTutorialsByAmit/

Recommended