TheCodeExpert Asked: 2021-11-04 11:09:19 +0800 CST2021-11-04 11:09:19 +0800 CST 2021-11-04 11:09:19 +0800 CST 查找PID进程的路径 772 我想得到一个PID的路径。例如PID是8036,我想得到它的路径。像这样: Get-Path -pid 8036 Output: C:\Windows\svchost.exe 我怎样才能做到这一点?或者我可以吗? powershell pid 1 个回答 Voted Best Answer Reddy Lutonadio 2021-11-04T11:25:05+08:002021-11-04T11:25:05+08:00 尝试: Get-Process -Id 8036 -FileVersionInfo | Select FileName
尝试: