Caps Lock Hack
This constantly turns caps lock on and off really fast continuously. Also save this in .vbs extensionSet wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
Backspace Hack
This makes it so the backspace key is constantly being pressed. Save it in .vbs extension
MsgBox “Let’s go back a few steps”
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
Make Keyboard Type "You Are A Fool!!!"
Hack keyboard to type "You Are A Fool!!!" continuously. Save it in .vbs extension
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You Are A Fool."
loop
Shutdown Your Computer
Convey a message and turn off the computer. Save it in .bat extension.
@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s
I hope you really like this hacks and will definitely use this hacks to fool your friends. You can also change the codes as per your choice.