Some Funny Notepad Tricks

Today anglestacks share Some notepad tricks , so use and enjoy it  

Display Cycle of Messages :
Open Notepad and Type the following code :

@ECHO off
:top
msg * I don't like you
msg * I don't like you 2
msg * I don't like you 3
msg * I don't like you 4
GOTO top

save with msg.bat name
 
Continuously pop out CD or DVD Drive :
Open Notepad and Type the following code :

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

now save with cd.vbs name.  
 
Toggle Caps Lock Button On-Off Continuously:
Open Notepad and Type the following code :

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

now save with caps.vbs name.
keyboard to make it type anything continuously:
Open Notepad and Type the following code :

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

now save with key.vbs name.
 
Open Notepad continuously :
Open Notepad and Type the following code :

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

now save with note.bat name

Show a error message and shut down friends computer :
Open Notepad and Type the following code :

@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s


 Now save with Shut.bat name

Read More...
How To See Preview Of any Shorten Url (किसी शार्ट url का प्रीव्यू कैसे देखे )
What is Hacking and Ethical Hacking?
How to Know Who Logged into My Computer and When?
How To Create Run Commands in Windows
 
If you want Anglestacks Updates on His email inbox,


Subscribe now …. and share it...
 
 
 





0 comments:

Post a Comment