The tasklist command displays the list of all running processes on your computer.
No confidential information is collected.
Open a Command prompt (cmd.exe
) and use the following commands:
- Type
tasklist
to output a list of all the currently running processes - To output as a txt, type
tasklist /v txt
- To save the output of the command line to a file, add
> filename.txt
to the end of the command; for example,tasklist /v txt > "%userprofile%\desktop\tasks.txt"
For full documentation on the various options for what to output, type tasklist /?
into the command prompt.
Send us the file you have just saved.