Do you have a virus on your USB drive? How to check whether the USB is safe, unlock infected files, and how defend!
Summary Windows Defender Antivirus detects and removes this threat. This threat can perform a number of actions of a malicious hacker's choice on your PC. Find out ways that malware can get on your PC. What to do now Use the following free Microsoft software to detect and remove this threat: WinRead more
Summary
Windows Defender Antivirus detects and removes this threat. This threat can perform a number of actions of a malicious hacker’s choice on your PC. Find out ways that malware can get on your PC.
What to do now
Use the following free Microsoft software to detect and remove this threat:
- Windows Defender for Windows 10 and Windows 8.1, or Microsoft Security Essentials for Windows 7 and Windows Vista
- Microsoft Safety Scanner
You should also run a full scan. A full scan might find other hidden malware.
Get more help
You can also see our advanced troubleshooting page for more help. If you’re using Windows XP, see our Windows XP end of support page.
Microsoft Safety Scanner is a scanning tool designed to find and remove malware from Windows computers. Simply download and run a scan to find malware and try to undo changes made by identified threats.
note
Starting in November 2019, security scanners will specifically sign SHA-2. Your device must be updated to support SHA-2 in order to run the security scanner. To learn more, see the 2019 SHA-2 code signing support requirements for Windows and WSUS.
See less
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 liRead more
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
See lesstitle 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