Remove Viruses from infected storage devices with ease:)

YOU JUST HAVE TO MAKE A CODED .BAT FILE TO PERMANENTLY REMOVE VIRUS




A bat file is an executable file which contains some pre-written script.
Just like the Visual Basic Script, it’s made to do certain tasks, and in our case, it’s removing the shortcut virus.

STEPS TO REMOVE SHORTCUT VIRUS USING BAT FILE:

  1. Open a Notepad File.
  2. Paste the code below in it, and save it as with a .bat extension (Save As -> All Files -> .bat extension)
@echo off
 attrib -h -s -r -a /s /d G:*.*
 @echo complete
Note
Replace letter G with the Drive letter of infected removable drive at every instance.

Comments

Popular Posts