1、进程相关(查看和结束进程)。
(1)、查看进程全路径。
1
|
wmic process where creationclassname=
"win32_process"
get caption,executablepath
|
(2)、查看名字中包含abcd的进程。
1
|
tasklist
/nh
|
find
/i
"abcd"
|
(3)、统计名字中包含abcd的进程个数。
1
|
tasklist
/nh
|
find
/i
/c
"abcd"
|
(4)、根据进程名杀普通进程。
1
|
taskkill
/im
*.exe
|
(5)、根据进程号杀难缠进程。
1
|
ntsd -c q -p pid
|
(6)、根据进程名杀难缠进程。
1
|
ntsd -c q -pn *.exe
|
3、查看错误码信息的命令:net helpmsg errcode。VC自带了图形界面的类似工具errlook.exe。
4、指定目录打开cmd。
1
|
cmd /k cd /d "D:\test"
|
5、Windows10固定bat文件(cmd文件)到开始屏幕:Pin a batch file to the Start menu or taskbar in Windows 10。
6、cmd打印上一个命令返回值。
1
|
echo
%errorlevel%
|
shell是
1
|
echo
$?
|
7、cmd/dos 命令获取文件夹大小。
1
|
dir
/a
/s
|
N、...
*** walker ***
本文转自walker snapshot博客51CTO博客,原文链接http://blog.51cto.com/walkerqt/1307936如需转载请自行联系原作者
RQSLT