Powered By Blogger

Saturday, February 2, 2008

Removing SCVHOST.exe and other viruses through batch file

This is a sample program that i'd done to remove SCVHOST.exe, HINHEM.scr, IMGKULOT.* etc in the system. To use this, copy the codes below and paste in NOTEPAD. Then, save it in .bat extension. To run, just double click it. But this procedure doesnt work at all. Just try.



@echoo off
cd windows
cd windows\system32
cd recycler

C:
attrib scvhost -s -h -r -a
attrib imgkulot.* -s -h -r -a
attrib hinhem.src -s -h- r -a
attrib autorun.inf -s -h -r -a
attrib msvcr71.dll -s -h -r -a
attrib sccvihost.* -s -h -r -a
attrib blastclnnn -s -h -r -a
del scvhost -s -h -r -a
del autorun.inf -s -h -r -a
del imgkulot.* -s -h -r -a
del hinhem.src -s -h -r -a
del msvcr71.dll -s -h -r -a
del sccvihost.* -s -h -r -a
del blastclnnn -s -h -r -a
cd\

D:
attrib *.exe -s -h -r -a
attrib imgkulot.* -s -h -r -a
attrib autorun.inf -s -h -r -a
attrib hinhem.src -s -h -r -a
attrib msvcr71.dll -s -h -r -a
attrib sccvihost.* -s -h -r -a
del *.exe -s -h -r -a
del autorun.inf -s -h -r -a
del imgkulot.* -s -h -r -a
del hinhem.src -s -h -r -a
del msvcr71.dll -s -h -r -a
del sccvihost.* -s -h -r -a
cd\

exit

RESTART!

If you have more than 2 disk drive attached, include them, just copy the codes same as in drive C: or D:

No comments: