当前位置: 首页 > 图文教程 > 脚本技术 > DOS/BAT > 用DOS杀毒的一个不错的应用

DOS/BAT
dos下at命令的用法
常用正则表达式与批注[收藏]
超简单超强悍的清理C盘垃圾文件方法
写了个Vista的服务优化脚本
批处理应用:根据文件内容进行重命名操作
批处理应用:使用FLASHGET检查Mcafee SuperDat更新
批处理应用:恢复Mcafee重命名的可疑病毒文件扩展名
批处理应用-Mcafee手动杀毒脚本
用DOS批处理实现建立文件夹的代码
%time:~0,2% %%内的意思详解
用asp.net实现 取页面中的所有链接
用bat实现定时执行任务的批处理文件
用bat实现的自动关机的代码
批处理(dos/bat)最完整人性化教程
用批处理写的永不被杀的后门
可以实现反复重启的批处理
超级批处理病毒,不错的学习资料
可以实现系统自动关机的批处理
强制与他人QQ聊天的批处理Dos
CMD下的网络安全配置方法

DOS/BAT 中的 用DOS杀毒的一个不错的应用


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 70 ::
收藏到网摘: n/a

教一个命令:
DISK:\> help attrib > attrib.txt
---------------------attrib.txt-----------------------
Displays or changes file attributes.
ATTRIB [+R | -R] [+A | -A ] [+S | -S] [+H | -H] [drive:][path][filename]
[/S [/D]]
+ Sets an attribute.
- Clears an attribute.
R Read-only file attribute.
A Archive file attribute.
S System file attribute.
H Hidden file attribute.
[drive:][path][filename]
Specifies a file or files for attrib to process.
/S Processes matching files in the current folder
and all subfolders.
/D Processes folders as well.
一般病毒会把自己搞成系统的、隐藏的、只读的文件,则
DISK:\>attrib -s -r -h 可能的病毒文件
分辨出哪个该杀后直接del就可以了