- 帖子
- 60
- 积分
- 187
- 威望
- 289
- 金钱
- 226
- 在线时间
- 6 小时
|
@if {%1}=={} goto useage
@if {%2}=={-c} goto :clearlog
@if exist %1:autorun.inf goto clear
@goto mianyi
:clear
@echo U盘中毒,试图清除autorun.inf文件
@attrib -r -a -s -h %1:autorun.inf
@del /F /Q %1:autorun.inf
@IF ERRORLEVEL 0 echo 成功清除autorun.inf文件
@goto mianyi
:mianyi
@md %1:autorun.inf
@IF ERRORLEVEL 0 echo 建立autorun.inf文件夹
@IF ERRORLEVEL 1 goto cantwrite
@if exist %1:autorun.inf cd /d %1:\\autorun.inf
@md 坏狼网络..\
@IF ERRORLEVEL 0 echo 建立无法删除文件夹
@IF ERRORLEVEL 1 goto cantwrite
@cd..
@attrib +r +a +s +h %1:autorun.inf
@if exist %1:autorun.inf echo SUCESS!
@goto end
:clearlog
@rmdir /s /q "[url=file://\\?\%1:\autorun.inf]\\?\%1:\autorun.inf[/url]"
@IF ERRORLEVEL 0 echo 删除免疫目录
@goto end
:useage
@echo ====================================================
@echo ====================U盘免疫v1.1=====================
@echo 免疫: U盘免疫 盘符
@echo 清理免疫目录: U盘免疫 盘符 -c
@echo 例子: U盘免疫 E
@echo U盘免疫 E -c
@echo by:完美蚂蚁
@echo ====================================================
@goto end
:cantwrite
@echo 无法删除U盘里的autorun.inf文件,请检查是否可读写
@goto end
:end
@pause |
|