美文网首页
windows通过进程找到文件运行路径

windows通过进程找到文件运行路径

作者: migrate_ | 来源:发表于2019-09-25 11:11 被阅读0次
  1. 打开所有端口进程列表
netstat -ano
  1. 找到可以的端口链接
netstat -ano | findstr 13232
  1. 通过pid找到进程
tasklist | findstr 13232
  1. 通过进程找到文件路径
wmic process where name="firefox.exe" get processid,executablepath,name
wmic process get name,executablepath,processid|findstr 2860

相关文章

网友评论

      本文标题:windows通过进程找到文件运行路径

      本文链接:https://www.haomeiwen.com/subject/tpgfyctx.html