赞
踩
首先根据进程名查看该进程的可执行文件路径,例如:“D:\OpenSSH-Win64\sshd.exe”
格式化输出进程对应的可执行文件路径,进程名,进程ID:
get-process sshd | format-table path, name, id
或者get-process -id 29456 | format-table path, name, id
然后根据对应的可执行文件路径找到对应的服务名称:
Get-WmiObject win32_service | where {$_.path -like "*sshd.exe"} | Format-Table name, processid, path
格式化输出服务名称,进程ID,可执行文件路径
注意反向操作可以根据服务查找到对应的进程。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。