Save the list from task manger.

tasklist > c:\process_list.txt cool thing to do when someone is helping with windows issues.
Please dont use this.
Why? it requires elevated permissions. which you should not request if looking for windows issues (specially viruses) as a virus can intercept & then use your elevation as way to infect all users

Much safer methods
:
By default cmd will open in home folder of the user so you only need this
tasklist > file.txt
OR for documents
tasklist > %HOMEPATH%\Documents\tasklist.txt


better versions are (sorted by and restricted)
tasklist /fi "memusage gt 100000" | sort /r /+65 > sortbymemory.txt < Will sort by memory larger than 100MB
tasklist /fi "imagename eq chrome.exe" searchbyimage.txt - Will search for single process
tasklist /fi "username eq <username_here>" - will search for processes by users.
tasklist /NH | findstr /I myProcess < will find string my process in list
 
Last edited:
Back
Top Bottom