You probably already knew this, but if you want to see a list of all of the startup programs that run when Windows starts, you can simply go to the MSCONFIG tool and click on the Startuptab! Here you can enable or disable startup programs easily. (Read here on how to use MSCONFIG)
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 Start, Run and typing in CMD.
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.
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.
Post a Comment