WINDOWS查进程全路径
tasklist只能看到PID和进程名,但是不知道全路径。
wmic process where processid=3876 get processid,executablepath,name
杀进程
taskkill /F /IM cmd.exe /T
taskkill /PID 1234 /F
ntsd -c q -p 3876
wmic process where name="mysqld.exe" delete
wmic process where processid=1234 call terminate