1.25.2012

Shutdown PC After Conveying a Message

This one is kind of an annoying trick and if used unknowingly can certainly cause problems (am serious). What this trick does is, after conveying a (any) message it shuts down the computer without any confirmation. In order to create the Shutdown file, follow the below mentioned steps:

  • Open Notepad.
  • Paste the following code in it:

@echo off

msg * Its time to get some rest.

shutdown -c “Error! You have to take rest! Byeeeeee” -s

  • Save the file with any name but with .bat extension and close it. For eg. TakeRest.bat

Toggle Keyboard Keys Simultaneously


1. Caps Lock Key

    • Open Notepad.
    • Paste the following code in the notepad file:

Set wshShell =wscript.CreateObject(“WScript.Shell”)

do

wscript.sleep 100

wshshell.sendkeys “{CAPSLOCK}”

loop

    • Save the file with anyname and .vbs extension. and close it.
    • Now open the newly created file and see how the caps lock key behaves on your keyboard!

2. Hit Enter Key Continuously

    • Open Notepad.
    • Paste the following code in the notepad file:

Set wshShell = wscript.CreateObject(“WScript.Shell”)

do

wscript.sleep 100

wshshell.sendkeys “~(enter)”

loop

    • Save the file with any name and .vbs extension and close it.
    • Now open the newly created file and see how the enter key behaves!

3. Hit Backspace Key Continuously

    • Open Notepad.
    • Paste the following code in the notepad file:

MsgBox “Lets Rumble”

Set wshShell =wscript.CreateObject(“WScript.Shell”)

do

wscript.sleep 100

wshshell.sendkeys “{bs}”

loop

    • Save the file with any name and with .vbs extension and close it.
    • Now open the newly created file and see how the key behaves!

In order to end the vbs script (stop continuous key presses), open task manager and end thewscript.exe process as shown in image below.

Constantly Repeat Messages in Windows

Using this notepad trick you can annoy anyone and can actually force them to log off or leave the computer (LOL….). This notepad trick will create an infinite cycle of a message in the computer. Follow the steps to know more:

  • Open Notepad.
  • Paste the following code in the notepad file:

@ECHO off

:Begin

msg * Hi

msg * Are you having fun?

msg * I am!

msg * Lets have fun together!

msg * Because you have been o-w-n-e-d

GOTO BEGIN

  • Save the file with any file name but with .bat as extension and close it. For eg. Freakymessage.bat

After saving the file just open it (by double clicking) and see what happens.

Pssstttt……. You can piss of your friends by sending it as an email attachment asking them to try it out !