tasklist
tasklist
shows all tasks running on the computer, in this moment, and their PID
- Can be run locally or remotely
- One problem is that all
svchosts.exe
appear identical, and can be easy to gloss over
Tasklist Commands
tasklist
tasklist /svc
- For each exe running, it lists the associated services
tasklist /m
- All the DLLs associated with each executable
tasklist /m /fi "pid eq [pid]
/m
- Lists all tasks curring using the given exe/dll name
/fi
- Apply a pre-configured filter (e.g., by PID, but status, by username, etc.)
/u domain\user </p password>
- Run
tasklist
as a different user
- If the password is not entered in the optional switch, then the user will be prompted after running
Sources
#tools_win