标题: [系统相关] 批处理已知进程的pid如何获取进程名? [打印本页]
作者: genius52 时间: 2011-6-29 09:18 标题: 批处理已知进程的pid如何获取进程名?
其实是想检测某个进程是否在运行状态,调用tasklist|findstr "processname.exe",
但是当processname长度超过25时,就会查找不到这个进程。所以想通过Pid的方式查看进程名。
作者: tmplinshi 时间: 2011-6-29 11:01
- tasklist /fi "pid eq 123"
复制代码
作者: HAT 时间: 2011-6-29 11:06
- tasklist /fi "imagename eq notepad.exe"
复制代码
- wmic process where name="notepad.exe" get * /value
复制代码
作者: genius52 时间: 2011-6-29 11:09
谢谢版主,我是bat初学者
请问要如何将返回的进程名赋给变量呢?
作者: HAT 时间: 2011-6-29 11:14
4# genius52 - @echo off
- for /f %%a in ('tasklist /fi "pid eq 3768"') do (
- set pName=%%a
- )
- echo,%pName%
- pause
复制代码
作者: tmplinshi 时间: 2011-6-29 11:19
本帖最后由 tmplinshi 于 2011-6-29 11:22 编辑
- @echo off
-
- set pid=123
-
- for /f %%i in (' "tasklist /nh /fi "pid eq %pid%" 2>nul" ') do (
- set ProcessName=%%i
- goto found
- )
-
- echo 没有 pid 为 %pid% 的进程
- goto next
-
- :found
- echo pid 为 %pid% 的进程名为 %ProcessName%
-
- :next
- 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 |