up vote 0 down vote favorite
share [g+] share [fb]

I know that the TaskList command show the currently running tasks but it does not show the full pathname.

Is there a way to do it?

link|improve this question
feedback

5 Answers

up vote 3 down vote accepted

Process Viewer for Windows has a command-line PV.EXE that will show full paths when used with the -v option

http://www.teamcti.com/pview/prcview.htm

firefox.exe         1016 Normal   C:\Program Files\Mozilla Firefox\firefox.exe
taskmgr.exe         1872 High     C:\Windows\system32\taskmgr.exe
wuauclt.exe         3796 Normal   C:\Windows\system32\wuauclt.exe
explorer.exe        2196 Normal   C:\Windows\explorer.exe
cmd.exe             4972 Normal   C:\Windows\system32\cmd.exe
link|improve this answer
feedback

Powershell can do this:

get-process | get-item -erroraction silentlycontinue | format-table name, directory
link|improve this answer
feedback

Try tasklist /v

link|improve this answer
Even with verbose settings, it still wont get the location for all. – DanBig Jul 29 '09 at 20:40
feedback

TLIST used to do that, but it was replaced. Read This

link|improve this answer
feedback

Here is an app that will do it, but it's not a command window app.

http://www.techbuzz.in/how-can-i-find-exe-location-of-processes-in-windows-xp-task-manager.php

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.