cmd command line

Ideally, all programs can be self-describing,

For example, mysql -h, which command support, which required parameters for each command

 

There are several command-line tool command about the process,

tasklist

taskkill

http://hi.baidu.com/kktlxd/item/3086d9ae6e66f7a829ce9dd3

taskkill not close the process can try the following method

2, with wmic process Where name = "Process Name" call terminate this process does not need to know the PID of
example:
wmic process Where name = "iexplore.exe" call terminate close IE browser,
. 3, -cq NTSD -p [PID progress codes] [under win7 can not run ntsd]
example: or give it shut down Thunder, Thunder's first find out the same PID code 2724
ntsd -cq -p 2724 is this instruction!

 

 

Reproduced in: https: //www.cnblogs.com/jamesldj/p/3350473.html

Guess you like

Origin blog.csdn.net/weixin_33748818/article/details/93771021