Be aware of what processes are running on your computer is a great thing. This to understand what is going on on your machine, but also to report some unexpected behaviour to experts who are in many forums, ready to help you. One of the first things you could be asked by people willing to help you identify an issue on your PC is a complete list of your running processes. Retrieving such a piece of information is quite easy since it is sufficient to press CTRL+ALT+DEL and click Start Task Manager to open a window showing you all the running processes on your Windows. But how write them on a .txt or .doc file in a couple of steps? Just follow this trick.
- First of all, gain access to the Command Prompt. Click on Start, on the Search Bar type Command Prompt and hit Enter. You should now be able to see the famous black window.
- Execute this command: wmic process get description,executablepath
- To create a textfile (.txt) execute this code: wmic /output:d:\process.txt process get description,executablepath
- Done!