1

windows 下使用 tasklist 查询进程信息 使用 taskkill 杀进程

 2 years ago
source link: https://hellodk.cn/post/119
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

windows 下使用 tasklist 查询进程信息 使用 taskkill 杀进程

Windows 查找占用端口 12345 的进程:

netstat -ano |findstr 12345

查看进程映像名称为 qbittorrent 的信息:

tasklist |findstr qbittorrent

查看进程 pid 为 3777 的映像名称:

tasklist |findstr 3777

杀掉 pid 为 3777 的进程:

taskkill -f -pid 3777

杀掉进程名(比如 java.exe ):

taskkill -f -t -im java.exe

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK