html

Top 10 NotePad Tricks


Notepad is the most used utility by windows users, so today we gonna see the best of notepad tricks !
1 - Create Diary On Notepad
This trick allow you to create Notepad Note In Such  a format that whenever you edit your note.
To do this follow those steps :
1 - Open Notepad
2 - Type .LOG in first Line
3 - Save the file as log.txt
4 - Now write something in the file and you will see the trick !
2 - Create Fake Windows Error with Notepad
This trick Allow you to create a fake windows error message !
To do this Trick follow those steps :
1 - Open Notepad
2 - Type Msgbox "Your message Here", o+16,"Title Here"
3 - Now Save The file as message.vbs and run it !
3 - Force Shutdown Windows
This trick allow  you to shutdown your windows, you can send the file to  your friend and  shutdown his machine !
To do this Trick :
1 - Open Notepad
2 - Type @echo off in the first line
3 - Type shutdown -c "Sleep Tight"-s in the second line
4 - Save the file with .bat extension for example shutdown.bat
5 - Click on the file and your windows will automatically shutdown !
4 - Create password Protected Folder
This trick allow you to secure tour folders using Password !
Tod do this follow those steps :
1 - Open Notepad
2 - Paste This :
--- BATCH CODE ---
@ECHO OFF
title Folder Private
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you want to lock the folder(Y/N)
set/p “cho=>”
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Private “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p “pass=>”
if NOT %pass%== Yassinox goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End
--- END OF BATCH CODE ---

3 - Change "Yassinox" By Your password
4 - Save The file As private.bat 
5 - Now when you run private.bat you will see a new folder , move your private files here.
6 - Close The Folder
7 - And no one will be able to open this folder only using the password
5 - Make Computer To  Speak Your Sentence
This notepad trick will allow your computer to speak the sentence written on notepad.
to do it just follow this :
1 - Open Notepad
2 - Copy, paste this Command :
Dim message, sapi
message=InputBox(“What do you want me to say?”,”Speak to Me”)
Set sapi=CreateObject(“sapi.spvoice”)
sapi.Speak message
 
3 - Save the file as speak.vbs
4 - Now Run It and listen
6 - Open And Close CD Drive Using notepad
1 - Open Notepad
2 - Type :
--- VBS 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
--- END OF VBS CODE ---
Without ( VBS AnD End of VBS CODe !)
3 - Save The file as cd.vbs and open it !
7 - Create Matrix Raining Screen
1 - Open Notepad
2 - Write :
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
3 - Save it as matrix.vbs and open it !
8 - Make Your Keyboard Led Dance
Your Keyboard Has Three Leds above numpad of scroll lock
This trick will make those leds continually on and off .


to do this :
1 - Open Notepad
2 - Write :

Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
wshshell.sendkeys “{NUMLOCK}”
wshshell.sendkeys “{SCROLLLOCK}”
loop
3 - Save it as file.vbs and run it !
9 - Test Your Antivirus.
1 - Open Notepad
2 - Write :
X5O!P%@AP[4PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
3 - Save it as antivirus.com and open it ! you will see your antivirus will detect it as a virus and delete it !
10 - Bush Hid The Facts
Open Notepad and write BUSH HID THE FACTS , 
Save it and open it again, see what's happened ? amazing !



Previous
Next Post »