Windows 常用命令

一、netstat -ano | findsrt 8080

 

taskkill /PID [xx] /T

 

taskkill /F /PID [xx] /T 强杀

 

tasklist

 

二、查看进程

 

Eclipse启动

wmic process where name="javaw.exe" get CommandLine,ProcessId

 

独立启动

wmic process where name="java.exe" get CommandLine,ProcessId


你可能感兴趣的:(windows)