系统WIN7 x64位 下载devcon命令行工具 Download the "Windows Driver Kit (WDK) 7.1.0 from Microsoft: http://www.microsoft.com/download/en/details.aspx?id=11800 Extract the ISO to a temp directory with WinRAR, Uniectractor Extract the install file "WDK\setupto
基础 首先所有命令在cmd命令行中都能找到说明: 例如 想知道type用法 输入type /? 其他命令都一样 type [drive:][path] filename 显示文本文件内容 虽然有点鸡肋 1 # exit 和 del # 自动清理系统垃圾 @echo off if exit [filname] del [filename] if exit c:\windows\Tempor~1\*.* del c:\windows\Tempor~1\*.* DOS不支持长文件名,就出现了Tempo
写过几次bat脚本,但一直没有总结,最近找到一个网页介绍bat,总结得很好,转自 http://www.jb51.net/article/49627.htm: 本文只总结我不会的,全面的看原网页就可以了. 1 参数 '%':参数符,%[1-9]表示参数,多个参数要用空格或tab隔开.变量可以从%0到%9,%0表示批处理命令本身,其它参数字符串用%1到%9顺序表示. 例3:C:根目录下一批处理文件名为t.bat,内容为: @echo off type %1 type %2 那么运行C:\>t a.