enable startup programs
Knowing which programs run at startup can be very useful for debugging all sorts of performance issues related to your PC. A good thing to do would be to make a list of all of the startup programs while your computer is running normally. That way, if there is a process you see running on your system later on that is taking up a large amount of resources, you can check your list to see if it was there earlier or not.
You can actually generate a list of all the startup programs in Windows using the command prompt and save the list as a text file or an HTML document. Here’s how:
Step 1: Open the command prompt by going to StartRun and typing in CMD.
command prompt
Step 2: Now type in the following command at the prompt and press Enter
wmic startup get caption,command
You should now see a list of all the applications along with their paths that run at Windows startup.
startup applications windows
Step 3: If you want to export the list out as a text file, type in the following command:
wmic startup get caption,command > c:\StartupApps.txt
And if you want to create an HTML file, just type this instead:
wmic startup get caption,command > c:\StartupApps.htm
That’s it, now you have a list of startup programs that you can save and use as a reference for later on.