Board logo

标题: [系统相关] 批处理已知进程的pid如何获取进程名? [打印本页]

作者: genius52    时间: 2011-6-29 09:18     标题: 批处理已知进程的pid如何获取进程名?

其实是想检测某个进程是否在运行状态,调用tasklist|findstr "processname.exe",
但是当processname长度超过25时,就会查找不到这个进程。所以想通过Pid的方式查看进程名。
作者: tmplinshi    时间: 2011-6-29 11:01

  1. tasklist /fi "pid eq 123"
复制代码

作者: HAT    时间: 2011-6-29 11:06

  1. tasklist /fi "imagename eq notepad.exe"
复制代码
  1. wmic process where name="notepad.exe" get * /value
复制代码

作者: genius52    时间: 2011-6-29 11:09

谢谢版主,我是bat初学者
请问要如何将返回的进程名赋给变量呢?
作者: HAT    时间: 2011-6-29 11:14

4# genius52
  1. @echo off
  2. for /f %%a in ('tasklist /fi "pid eq 3768"') do (
  3.     set pName=%%a
  4. )
  5. echo,%pName%
  6. pause
复制代码

作者: tmplinshi    时间: 2011-6-29 11:19

本帖最后由 tmplinshi 于 2011-6-29 11:22 编辑
  1. @echo off
  2. set pid=123
  3. for /f %%i in (' "tasklist /nh /fi "pid eq %pid%" 2>nul" ') do (
  4.     set ProcessName=%%i
  5.     goto found
  6. )
  7. echo 没有 pid 为 %pid% 的进程
  8. goto next
  9. :found
  10. echo pid 为 %pid% 的进程名为 %ProcessName%
  11. :next
  12. pause
复制代码

作者: CrLf    时间: 2011-6-29 14:52

可以用 tasklist /fo csv
作者: genius52    时间: 2011-6-29 16:29

感谢楼上几位的帮助! 终于搞定了!




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2