Some Amazing Notepad Tricks | LearnFully

3
Some notepad tricks
Notepad


All the below given notepad tricks may or may not be work depend on your Hardware and Software and Run them at your own risk any kind of data loss or software failure we will not be not be responsible for it.

1. Use Notepad As Diary

This trick is used to save your notepad document with date 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 learnfully.blogspot.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 learnfully.blogspot.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_MACHINEsystemCurrentControlSetServicesMouclass”
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. Create Password Protected Folder Lock

Copy the code below
@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%==LearnFully 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 LearnFully
If you want to change password then replace LearnFully from above codes with your own Password.



Post a Comment

  1. yea because i disabled copy paste thats why you can't copy texts but now i enabled try it now and thank you for visiting this blog...

    ReplyDelete

 
Top