Tuesday 23 December 2014

Here are the notepad tricks.Remember to think twice before trying these tricks on your friends. These tricks can be dangerous, BEWARE.


Picture

Open A Warning Message then Shut Down the Computer

Do:
Open Notepad and type:
@echo off
msg * You have been attacked
shutdown -c "Sorry! You are too late." -s

Then Save it as anyname.BAT

Continuously Pop Out Computers CD Drive 

Open Notepad and type:
Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop

Then Save as anyname.VBS

Continuously Toggle Caps Lock 

Open Notepad and type:
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop


Then Save as anyname.VBS

Continuously Press Enter

Open Notepad and type:

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop


Then Save as anyname.VBS

Slowly Autotype a Sentence

Open Notepad and type:

WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 100
WshShell.AppActivate "Notepad"
WScript.Sleep 500
WshShell.SendKeys "Hel"
WScript.Sleep 500
WshShell.SendKeys "lo "
WScript.Sleep 500
WshShell.SendKeys ", ho"
WScript.Sleep 500
WshShell.SendKeys "w a"
WScript.Sleep 500
WshShell.SendKeys "re "
WScript.Sleep 500
WshShell.SendKeys "you"
WScript.Sleep 500
WshShell.SendKeys "? "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m g"
WScript.Sleep 500
WshShell.SendKeys "ood"
WScript.Sleep 500
WshShell.SendKeys " th"
WScript.Sleep 500
WshShell.SendKeys "ank"
WScript.Sleep 500
WshShell.SendKeys "s! "


Then Save as anyname.VBS

Continuously Hit Backspace

Open Notepad and type:

MsgBox "Lets go back in Time"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop


Then save as anyname.VBS

Hack the Keyboard

Open Notepad and type:

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


Then Save as anything.VBS

Set a Flashing Screen


Open Notepad and type:


@echo off
echo e100 B8 13 00 CD 10 E4 40 88 C3 E4 40 88 C7 F6 E3 30>\z.dbg
echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75>>\z.dbg
echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88>>\z.dbg
echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3>>\z.dbg
echo g=100>>\z.dbg
echo q>>\z.dbg
debug <\z.dbg>nul
del \z.dbg


Then Save as anyname.BAT

Continuously Open Notepad 


Open Notepad and Type:
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

Then save as anyname.BAT

Matrix

Open Notepad and Type:

@echo off
color 2
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
Then save as anyname.bat

Choose your fate

Open Notepad and Type:

@echo off

title Get A Life

cd C:

:menu

cls

echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press ‘x’ then your PC will be formatted. Do not cry if you loose your data or anything.

pause

echo Pick your option:

echo 1. Die Slowly

echo 2. Instant Death

echo 3. Stay Away From This One

echo 4. Die this way (For Wimps!)

echo 5. Easy way out

set input=nothing

set /p input=Choice:

if %input%==1 goto one

if %input%==2 goto two


Then save as anyname.bat

Continuously Open Notepad 


Open notepad and type:
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

Then save as anyname.bat

No comments:

Post a Comment