windows下查看端口、查看进程、杀进程

查看端口

netstat -ano|findstr “8080”

查看进程

tasklist|findstr “2612”

杀进程

①taskkill /im 进程名称

例如:

1
taskkill /im qq.exe

②taskkill /pid 进程号 -t -f

例如:

1
taskkill /pid 6200

③wmic process where name=”进程名称” call terminate

例如:

1
wmic process where name="QQ.exe" call terminate




windows下查看端口、查看进程、杀进程
https://www.wekri.com/windows下查看端口、查看进程、杀进程/
Author
Echo
Posted on
December 29, 2015
Licensed under