I need to know the file name of each service listed on msconfig. Is that in the Windows Registry?

link|improve this question

68% accept rate
feedback

4 Answers

up vote 2 down vote accepted

If you want to see them from Windows registry:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services

You can see which services start on boot by the "Start"-value and see its file path with its parameters with the "ImagePath".

link|improve this answer
feedback

Hit Win+R and type services.msc. Then right-click on a service and click on Properties, you'll see Path to executable. This is what you are looking for.

link|improve this answer
feedback

Most of the services listed in msconfig are also listed in services.msc. There, when you click on its properties you should see the Executable Path.

For the apps that aren't listed there, I found some of them in the registry, under LOCAL MACHINE (or Current User)\Sw\Win\CurrVers\Run(or RunOnce)

link|improve this answer
feedback

I also believe the MS free app, Windows Processor shows the same information if you were looking for that information under the task manager. The other answers are better but if you need this data more often, the app is quite a time saver.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.