NOTEPAD COOL TRICK |
Web: - Vidyapithclasses.blogspot.com Gmail
: - Vidyapithc@gmail.com |
Make a Dairy
·
Open Notepad
·
Type .LOG in first line.
·
Save the file as Log.txt
·
Now, write something to the file and it will
automatically get saved with edited date and time.
·
Now you can create Diaries right in your
computer without any need of additional Software.
·
How cool is That?
Fake Error message box Create
·
Open Notepad
·
Type X=Msgbox("Message
Here",0+16,"Title Here")
·
Replace Message Here and Title Here with your
Error Message and Error-Window Title respectively.
·
Save the file with error.vbs.
·
Now, click the file and you’ll get your
custom-made Windows error message.
Shutdown With Message
Follow These Steps:-
·
Open Notepad
·
Paste @echo off in first line.
·
Paste msg * Shutdown computer in second line.
·
Paste shutdown -c “Sleep Tight” -s in third line
·
Save the file with .BAT extension. For example,
shutdown.bat
·
Click on your file and it will automatically
shutdown your Windows.
Create Password-protected Folder Using Notepad
·
Open Notepad
·
Copy the following 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%== HardiqV 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
HardiqV is
password. Change it to your own password.
Save the
file as private.bat with File Type As All Files (*.*).
Now, when
you click private.bat, it will create a Private folder. Move your private
files, documents and folders here.
Close
Private folder.
Now, no one
will be able to open the folder without the password.
Make
Computer to Speak Your Sentence
·
Open Notepad
·
Copy & paste this command:
·
Dim message, sapimessage=InputBox("What do
you want me to say?","Speak to Me")Set sapi=CreateObject("sapi.spvoice")sapi.Speak
message
·
Save the file as speak.vbs.
·
Double-click the file and it will open a prompt.
Enter the sentence you want your computer to speak
·
Click OK and Notepad will speak the sentence for
you.
Create
Matrix Raining Code Screen
·
Open Notepad.
·
Type this command:
·
@echo off
·
color 02
·
:start
·
echo %random% %random% %random% %random%
%random% %random% %random% %random% %random% %random%
·
goto start
·
Save the file as Matrix.bat
·
Click on Matrix.bat and the show begins.
Make Your Keyboard LED Dance
·
Open Notepad
·
Enter following code
Set wshShell
=wscript.CreateObject("WScript.Shell")
do
wscript.sleep
100
wshshell.sendkeys
"{CAPSLOCK}"
wshshell.sendkeys
"{NUMLOCK}"
wshshell.sendkeys
"{SCROLLLOCK}"
loop
·
Save the file as Dance.vbs
·
Click the file and your all three LED lights
will start dancing.
·
To stop, Shut down or Log off your PC.