0

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?

Stecy
  • 122
  • 1
  • 2
  • 6

5 Answers5

4

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
Kevin Kuphal
  • 9,134
  • 1
  • 35
  • 41
2

Powershell can do this:

get-process | get-item -erroraction silentlycontinue | format-table name, directory
Adam Brand
  • 6,127
  • 2
  • 30
  • 40
0

Try tasklist /v

RascalKing
  • 1,138
  • 5
  • 7
0

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

Tester101
  • 485
  • 2
  • 6
  • 9
-2

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

DanBig
  • 11,423
  • 1
  • 29
  • 53