--
0



1. Pop Up Endless Notepads from Windows Till Pc Crashes


I have brought a series of notepad hacks so that you all people can have some fun from your pc. First one in the series is a cool notepad pop-up hack. This hack will pop up endless and countless notepads until the computer freezes and crashes. Make sure you save all your work before continuation.

How to do it ?


It’s very simple to perform. Just copy the below written code in a notepad and save it as “.vbs” extension.

Code: 
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

2. Pop Up Endless Notepads From Windows Till Pc Crashes

By using this hack you can hack your friend’s keyboard and will make him type “You are a fool” simultaneously. He will find no way out of it.Interesting na! So let’s do it.

How to do it ?

It’s very simple to perform. Just copy the below written code in a notepad and save it as “Anything.BAT” extension.

Code 
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “You are a fool.”
loop

3. Unlimited Backspace Hack

This will turn you or your friend mad.It simply will make backspace press continuously without stopping. Here it is.

How to do it ?

It’s very simple to perform. Just copy the below written code in a notepad and save it as “Anything.BAT” extension.
Code
MsgBox “Let’s go back a few steps”
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
4. Caps Lock Gone Crazy


It’s a trick which will continuously turn your caps lock on and off. Here we go.

How to do it ?

It’s very simple to perform. Just copy the below written code in a notepad and save it as “Anything.BAT” extension.

Code 
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop

5. Convey Your Friend a Message and Shut Down his / her  Computer

With this Hack you can easily leave someone a message on his screen and then the computer will turn off automatically and your friend will not get any chance to stop it.
How to do it ?

It’s very simple to perform. Just copy the below written code in a notepad and save it as “Anything.BAT” extension.

Code:
@echo off
msg * I don’t like you
shutdown -c “Error! You are too stupid!” -s

NOTE: Use it just for fun only, don’t try to be professional with it.


No Response to "Hacking with notepad"

Post a Comment