命令行历史:
F7弹出一个命令选择窗口,
F8输入少数几个字符后按F8自动补全,
F9弹出一个窗口输入命令序号
Dpath:
Allows programs to open data files in specified directories as if they were
in the current directory.
重定向
Chkdsk /r 2> diskerror.txt; 只将标准错误发送到文件中
2>&1; 将标准错误重定向到标准输出
(command1 & command2 ...) 命令分组功能
Hostname & ipconfig & netstat -a > current_cfg.txt这条命令只将netstat -a的输出发送到文件中
(hostname & ipconfig & netstat -a) > current_cfg.txt 这条命令会将所有输出合并后写入文件中
一些有用的工具(用法参考各自的帮助)
Typeperf 性能计数器
Wevtuitl 事件管理
Schtasks 管理计划任务
Diskpart 磁盘管理
Fsutil 磁盘维护
Defrag 磁盘整理
Where 文件查找