我知道 TaskList 命令显示当前正在运行的任务,但它不显示完整的路径名。
有办法吗?
答案1
Windows 的进程查看器有一个命令行 PV.EXE,与 -v 选项一起使用时将显示完整路径
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
答案2
电源外壳可以这样做:
get-process | get-item -erroraction silentlycontinue | format-table name, directory
答案3
尝试 tasklist /v
答案4
这是一个可以执行此操作的应用程序,但它不是一个命令窗口应用程序。
http://www.techbuzz.in/how-can-i-find-exe-location-of-processes-in-windows-xp-task-manager.php