Notepad is a very basic, common and well known text editor. Many think that we can't do anything awesome with it as it was to old and boring.
![]() |
4 Crazy Things You Can Do With Notepad & Scare Your Friends |
Hey everyone! Today I will show 4 Notepad Tricks you can do and scare your friends. Notepad is a very basic, common and well-known text editor. Many think that we can't do anything awesome with it as it was too old and boring.
Note: The following tricks doesn't harm your computer. However, if you want to get out of the trick just restart your computer or just delete the notepad file you saved. ;)
[post_ads]
1: Show An Error Message You Want And Shutdown The Computer:
- First, open the Notepad by pressing "Windows Key" and letter "R" together and then type Notepad.
- Cope the code into the text editor.
@echo off
msg * You fell for it again
shutdown -c “You are too stupid to open this” -s
- Now save the file with a YourFileName.vbs extension rather than the standard .txt extension.
- Now send this file to your friend and ask them to open it.
2: Hack Keyboard To Make It Type Something You Want Continuously:
- First, open the Notepad by pressing "Windows Key" and letter "R" together and then type Notepad.
- Cope the code into the text editor.
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys “I Tricked You.”
loop
- Change the text in "I Tricked You" to something you want.
- Now save the file with a YourFileName.vbs extension rather than the standard .txt extension.
- Now send this file to your friend and ask them to open it. :)
3: Continuously Pop Opens The DVD Drive:
- First, open the Notepad by pressing "Windows Key" and letter "R" together and then type Notepad.
- Cope the code into the text editor.
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 4000
loop
- Now save the file with a YourFileName.vbs extension rather than the standard .txt extension.
- Now send this file to your friend and ask them to open it.
4: Continuously Toggle On-Off the Caps Lock button:
- First, open the Notepad by pressing "Windows Key" and letter "R" together and then type Notepad.
- Cope the code here into the text editor.
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 150
wshshell.sendkeys "{CAPSLOCK}"
loop
- Now save the file with a YourFileName.vbs extension rather than the standard .txt extension.
- Now send this file to your friend and ask them to open it.
COMMENTS