Poll
Rate This WebSite.
Page Views
Website Chat
Labels
Android
(6)
Apple
(16)
Blogger
(6)
Facts
(6)
hacking
(20)
How to
(44)
Internet
(11)
Mac
(21)
Microsoft
(18)
Mobiles
(6)
News
(10)
Nokia
(1)
Our Downloads
(1)
Our Websites
(4)
PC tips
(63)
PC tricks
(64)
Search Engines
(6)
Security
(18)
social networking
(9)
Survey completion
(2)
Symbian
(1)
Top websites
(5)
Windows
(67)
Yahoo
(5)
Popular Posts
-
Hey, Very are various different bottle necks on your Mac that effect the performance of your computer. Originally it would be your CPU bein...
-
On screen keyboard is one of the coolest windows features that displays a virtual keyboard on the computer screen that allows people with m...
-
When mouse isn’t working properly , this trick can be very helpful. To activate mouse keys all you do is press Alt+Left shift key + NumLock ...
-
A 64-bit RTM version of Windows 8 Enterprise N edition has been leaked. Windows 8 Enterprise is the most comprehensive version of Windows 8 ...
-
1......Continually pop out your friend's CD Drive. If he / she has more than one, it pops out all of them! 1.Open the word pad 2.co...
-
Free Download Best Anti-virus Software Programs with Full, Latest Versions-2012 Download free all anti virus software programs for your P...
-
I love my Mac and I have hundreds of applications installed on it. As a result I wanted to do a post on what I believe are the top 100 Ma...
-
30 Fantastic Geeky Tricks to Get The Most From Your Mac If you’re one of those Mac users that loves to dig in and play with hidden featur...
-
TIME's annual salute to sites and services which can keep you entertained and informed, save you time and money -- and maybe even chang...
Followers
Sponsored Links
Sponsored Links
Blog Archive
-
2012
(141)
- September(4)
- August(12)
- July(5)
- June(22)
-
May(43)
- How to FlipText
- Computer Safety Tips
- Top 10 Free Antivirus software for 2012
- Interesting computer tricks
- How to Copy Text From Any Image
- Android Installation on Windows7
- Clean RAM using notepad
- The Simplest Way To Compress A Picture
- How to Disable Right click in Blogger / Wordpress
- How to Record screen in Mac
- Any Folder as a Photo Folder
- Best Download Manager - Really Fast
- Hey Guys we have started a new site
- How to use Picture passwords in Windows 8
- Speedup Internet surfing by Open DNS settings
- 15 Coolest Firefox Tricks!
- Tips to recover scratched CD's
- Updated trick for enabling Folder option
- Add Your Name (or) Application to right click Of M...
- All Permanently deleted files Recovery solution
- Funniest PC Pranks you can play on your friends
- Turn On a Pc in 10 Seconds
- How To Copy Text From An Image
- How To Delete Admin PC Password And Get Access To ...
- Increase Your PC Processing Speed Easily
- How To Get Product Key Of Your Windows & Other Pro...
- Make your Computer Welcome You
- How to Increase Firefox Speed
- How to make shutdown virus
- 10 Top Virus scripts - How to Make a Virus - Notepad
- Windows 8 Tricks, Tips and Shortcuts
- How to Dual-Boot Windows 7 and Windows 8
- Dual Boot Windows 7 with XP or Vista
- Undo “Send” in Gmail
- 20 Amazing Facts About Google
- Free Shutdown Timer For Windows XP
- Save Your Blog From Plagiarize (Copy Paste)
- Make Backlinks For free
- Check Your Antivirus Program
- Best PC tricks
- Trick to Change the Colour of Facebook
- 7 Cool Notepad tricks to scare your friends.
- Convert text into audio using Notepad
- April(55)
Thursday, 3 May 2012
7 Cool Notepad tricks to scare your friends.
We all know Notepad. It's a simple text editor. But today I am going to discuss some cool tricks which you can perform on your computer using simple notepad. You can use these tricks to scare your friends.
Please Note - These tricks will not harm your computer in anyway. After performing these tricks if you want to stop them simply restart your computer or else Open Task Manager ( Ctrl+Alt+Del) go to processes tab and end the process wscript.exe.
1) Continuously Pop out CD or DVD Drive:
- Open Notepad.
- Copy the code bellow.
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 as abc.vbs
- Send it to your friend now.
2) Toggle Caps Lock button On-Off Continuously :
- Open Notepad.
- Copy the following code.
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
- Save it as abc.vbs
- And send it to your friends.
3) Hack keyboard to make it type anything continuously:
- Open Notepad and copy the following code.
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop
- You can change You are a fool. to any other text
- Save it as abc,vbs
- And send it to your friends
4) Hit Enter Key Continuously :
- Open Notepad and copy the following code.
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
- Save it as abc.vbs
- Now sent it to your friends.
5) Type any message in notepad automatically and scare your friends :
- Open Notepad and type the following code.
WScript.Sleep 1800
WScript.Sleep 1000
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! "
- Now save it as abc.vbs
- And send it to your friends.
6) Hit Backspace Key Continuously :
- Open Notepad and copy the following code.
MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop
- Save it as abc.vbs and send it to your friends.
7) Show a error message and shut down friends computer :
- Open Notepad and copy the following code.
@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s
- Save it as abc.vbs and send to your friends.
Any questions feel free to comment.
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment