Search

Top 9 Best Cool Notepad Tricks & Hacks For PC - 2015

1. Use Notepad As Diary

This trick is used to save your notepad document with data and time every time you open the notepad it will looks like a dairy. You have to type the following command
1. Type the Name.Log in capital letters in notepad.
2. Save the file with default extension  and close it.

2. Falling Matrix Code Effect

This is another notepad tricks that will show green matrix falling in the black screen. Copy the code given below.
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start

Save the file with, Name.bat extension and open the file.

3. Dancing Keyboard LED

Another amazing notepad trick that show you the dancing of keyboard Leds.
Copy the code given below :
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
Save the notepad file with Name.vbs extension and double click it.

4. Computer Speaking Your Message

This notepad trick able you to speak your message through computer. Copy the code given below :




Dim speaks, speech
speaks="Welcome to SafeTricks.com"
Set speech=CreateObject("sapi.spvoice")
speech.Speak speaks
Save the file with Name.vbs extension and double click to run it. 
Replace the text "Welcome to SafeTricks.com" with your message.

5. Eject CD Drive Continuously

This is another popular vb script that run using notepad. It show you the continuous movement of your CD/DVD drive until you stop the script. Copy the code given below.
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 the file with Name.vbs extension and run it.

6. Disable The Mouse

This is another notepad funny trick that disable your mouse after double clicking the file that is created by using the code given below. 
rem Disable Mouse
set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass"
reg delete %key%
reg add %key% /v Start /t REG_DWORD /d 4
Save the file with Name.vbs extension and run it.

7. Shut Down PC

This is another cool notepad technic which i like the most. This will able you to shut down  PC by simply double clicking the file. Copy the code given below
@echo off
Shutdown.exe -s -t 10
cls
msg * I don’t like you SHIT!
Save the file with Name.bat extension and enjoy it.

8. World Trade Center Attack 

This is another popular notepad trick. The flight number for the plane that hit the World Trade Center on 9/11 was Q33N. Now follow the instructions to use this trick.

1. Type the flight number into Notepad.
2. Change font size to 72.
3. Change font to Windings.

Now you will see the effects.

9. Create Password Protected Folder Lock



Copy below given code

@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u 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 Locker "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%==xxxxx goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End

Save the file locker.bat and now open it.

1. Use Notepad As Diary

This trick is used to save your notepad document with data and time every time you open the notepad it will looks like a dairy. You have to type the following command
1. Type the Name.Log in capital letters in notepad.
2. Save the file with default extension  and close it.

2. Falling Matrix Code Effect

This is another notepad tricks that will show green matrix falling in the black screen. Copy the code given below.
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start

Save the file with, Name.bat extension and open the file.

3. Dancing Keyboard LED

Another amazing notepad trick that show you the dancing of keyboard Leds.
Copy the code given below :
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
Save the notepad file with Name.vbs extension and double click it.

4. Computer Speaking Your Message

This notepad trick able you to speak your message through computer. Copy the code given below :




Dim speaks, speech
speaks="Welcome to SafeTricks.com"
Set speech=CreateObject("sapi.spvoice")
speech.Speak speaks
Save the file with Name.vbs extension and double click to run it. 
Replace the text "Welcome to SafeTricks.com" with your message.

5. Eject CD Drive Continuously

This is another popular vb script that run using notepad. It show you the continuous movement of your CD/DVD drive until you stop the script. Copy the code given below.
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 the file with Name.vbs extension and run it.

6. Disable The Mouse

This is another notepad funny trick that disable your mouse after double clicking the file that is created by using the code given below. 
rem Disable Mouse
set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass"
reg delete %key%
reg add %key% /v Start /t REG_DWORD /d 4
Save the file with Name.vbs extension and run it.

7. Shut Down PC

This is another cool notepad technic which i like the most. This will able you to shut down  PC by simply double clicking the file. Copy the code given below
@echo off
Shutdown.exe -s -t 10
cls
msg * I don’t like you SHIT!
Save the file with Name.bat extension and enjoy it.

8. World Trade Center Attack 

This is another popular notepad trick. The flight number for the plane that hit the World Trade Center on 9/11 was Q33N. Now follow the instructions to use this trick.

1. Type the flight number into Notepad.
2. Change font size to 72.
3. Change font to Windings.

Now you will see the effects.

9. Create Password Protected Folder Lock



Copy below given code

@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u 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 Locker "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%==xxxxx goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End

Save the file locker.bat and now open it.
Folder Lock Password is xxxxx
If you want to change password then replace xxxxx from above codes with your own Password.

0 comments:

Post a Comment