Do you have a virus on your USB drive? How to check whether the USB is safe, unlock infected files, and how defend!
Do you have a virus in your USB drive? How to check whether the USB is safe, unlock infected files, and how to defend!
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
admin
1。 Create a TXT text file in your USB drive, then change the name and suffix to: AutoRun.inf
2. One-click BAT batch code to remove U disk virus:
Copy and paste the following code into the TXT text file, then change the name and suffix to: USB Virus Killer.BAT
@echo off&mode con cols=61 lines=25&color f2
title U盘病毒查杀工具
echo U盘病毒查杀工具
echo 平台:windows
cd\
del /f /q /ah *.exe 2>nul
del /f /q /as *.exe 2>nul
del /f /q …exe 2>nul
del /f /q *.inf 2>nul
md autorun.inf 2>nul &attrib +s +h +a +r autorun.inf 1>nul
for /f %%a in (‘dir /ad /b 2^>nul’) do (
del /f /q “%%a.exe” 2>nul &rd /s /q “%%a.exe” 2>nul
if not “%%a” equ “autorun.inf” (
attrib -s -h -a -r “%%a”
)
)
for /f %%b in (‘dir /a-d /b 2^>nul’) do (
if not “%%b” equ “desktop.ini” (
attrib -s -h -a -r “%%b” 1>nul 2>nul
)
)
echo.
echo.
echo 杀毒完毕,请按任意键退出!!!!!!!
echo.
echo.
echo =============================================================
echo == ☆注意☆ ==
echo == 一。本程序为粗略设计,并不是最完善,还望体谅! ==
echo == 二。运行玩后请自己用你慧眼检查一些exe文件,以免漏杀 ==
echo == 三。如需复制该程序,请将其放入u盘使用! ==
echo =============================================================
pause>nul