This tutorial is about using batch file commands to create a simple harmless virus to mess with your friend’s PC . Try to understand the Logic instead of mugging up the code . This is for educational purpose only , try at your own risk .
Tutorial :
open notepad and type the folowing code:-
________________________________
@echo off
shutdown -r -t 100 -c “Maverick”
________________________________
@echo off
shutdown -r -t 100 -c “Maverick”
________________________________
Save it as any name with a .bat extension like *game.bat*
you can change “Maverick” with what ever message you want,You can also change “100“(in secs) with whatever time you want to restart.
Send this “game.bat” to your friends using a pendrive or by uploadig it to rapidshare/hotfile service.
Send this “game.bat” to your friends using a pendrive or by uploadig it to rapidshare/hotfile service.
LOGIC:-
.bat :- Files having these extensions are known as batch files containg commands to be executed by command interpreter.
@echo off :- this command turn off the command you put in your batch file.
-r – this parameter restarts the pc.You can also use “-s” (without quotes) to shutdown the pc.
-t :- this parameter specifies time in seconds.
-c :- this parameter is used to specify a message in the shutdown box.
@echo off :- this command turn off the command you put in your batch file.
-r – this parameter restarts the pc.You can also use “-s” (without quotes) to shutdown the pc.
-t :- this parameter specifies time in seconds.
-c :- this parameter is used to specify a message in the shutdown box.
Note :- To stop shutdown
Go to run and type ”shutdown -a” and click on “ok“.
This virus will not harm your computer , it will just turnoff/restart your pc.






0 comments:
Post a Comment