I wrote a program for deleting Foldername.exe virus.
- Must be executed in the virus directory.
- There must not be exe file on the folder.
- Open notepad, copy the code into it and save something.bat.
:: Written by Mustafa CANTURK
:: https://www.mustafacanturk.com
:: Licensed under GPL
@echo off
for /f "tokens=*" %%a in ('dir /a /b') do (
attrib -S -H "%%a"
)
del *.exe
del autorun.inf
pause