hello guys, this blog contains all the tips & tricks for a PC user and also the educational info required for computer engineering. This blog also revelas you to the most simple but un-known tools in computer, this blog will give you information you always needed and will help you use your PC in more better way.
Showing posts with label Notepad. Show all posts
Showing posts with label Notepad. Show all posts
Tuesday, October 25, 2011
How to Lock and Hide Folders in Windows without any software!!
Follow these steps:
(1) Open Notepad and copy the contents of the code below.
cls
@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%==type your password here 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
(2) Change the password by replacing ‘type your password here‘ in the above code with your password. E.g you can change it to 1234 or anything you like.
(3) Save it as XYZ.bat
(4) Close the file if it is still opened. Now double click on XYZ.bat
(5) It will create a new folder called ‘Locker’ automatically.
(6) Place the contents you want to hide inside the ‘Locker’ folder and double click XYZ.bat, it will ask whether you want to lock. Say ‘Y’ and now your folder will disappear.

(7) To view again, double click XYZ.bat again and enter your password.
If you like it and worked with you, then comment. Thanks!
(1) Open Notepad and copy the contents of the code below.
cls
@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%==type your password here 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
(2) Change the password by replacing ‘type your password here‘ in the above code with your password. E.g you can change it to 1234 or anything you like.
(3) Save it as XYZ.bat
(4) Close the file if it is still opened. Now double click on XYZ.bat
(5) It will create a new folder called ‘Locker’ automatically.
(6) Place the contents you want to hide inside the ‘Locker’ folder and double click XYZ.bat, it will ask whether you want to lock. Say ‘Y’ and now your folder will disappear.
(7) To view again, double click XYZ.bat again and enter your password.
If you like it and worked with you, then comment. Thanks!
How To Create A Falling Matrix Code Effect In Notepad
We all remember the famous Matrix Move. One fascinating graphical effect of the Matrix movie is the falling green codes, showing random sequence of numbers plunging downward.
Today we are going to direct our own Matrix Reloaded Move, not with sophisticate cameras um um, not with the Wachowkis, the famous directors of The Matrix Move nor Village Roadshow Pictures and Silver Pictures the move studios.
In this move, we will be the Author, director, and the programmer. The only tool at our disposal will be Notepad
Open Notepad copy and paste the codes below in it.
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
After pasting the above code in notepad save it as matrix.bat or anything.bat
Double click on the saved file and watch your Matrix Reloaded run.

Note:
You can edit the script to suit your need.
Color 02 gives a green effect
Color 01 gives a blue effect. You can try other various color schemes
Today we are going to direct our own Matrix Reloaded Move, not with sophisticate cameras um um, not with the Wachowkis, the famous directors of The Matrix Move nor Village Roadshow Pictures and Silver Pictures the move studios.
In this move, we will be the Author, director, and the programmer. The only tool at our disposal will be Notepad
Open Notepad copy and paste the codes below in it.
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
After pasting the above code in notepad save it as matrix.bat or anything.bat
Double click on the saved file and watch your Matrix Reloaded run.
Note:
You can edit the script to suit your need.
Color 02 gives a green effect
Color 01 gives a blue effect. You can try other various color schemes
Monday, October 24, 2011
Add "Open with Notepad" to the Context Menu for All Files!!!
Add "Open with Notepad" to the Context Menu for All Files
The default method of opening unknown files forces you to go through a list of known applications and is generally a pain to deal with. That’s why I like to have a context menu option for “Open with Notepad” so that I can quickly open up files without having to go through a lot of trouble.This registry hack is nothing new, it’s been around forever… think of this as a refresher course. Also note that you can use this same technique to substitute any other application that you’d like by adjusting the path in the registry to point to the different editor.
Manual Registry Hack
Open regedit.exe through the start menu search or run box, and then browse down to the following key:
HKEY_CLASSES_ROOT\*\shell
Right-click on “shell” and choose to create a new key, calling it “Open with Notepad”. Create a new key below that one called “command”. Double-click on the (Default) value in the right-hand pane and enter in the following:
notepad.exe %1The change should take effect immediately… just right-click on any file and you’ll see the next menu entry.
Download Registry Hack
Just download, extract and double-click on the OpenWithNotepad.reg file to enter the information into the registry. There’s also an uninstall script included.
Download OpenWithNotepad registry hack
Sunday, October 23, 2011
Notepad as Diary
You can use your Notepad as a Dairy to store any event or information with time.
Open Notepad.
Type .LOG (in capital letters) and hit enter.
Save it with any name and close it.
When you open the file again you will see the current date and time being inserted automatically after the .LOG line. This will happen automatically every time you reopen the the notepad file.
Type .LOG (in capital letters) and hit enter.
Save it with any name and close it.
When you open the file again you will see the current date and time being inserted automatically after the .LOG line. This will happen automatically every time you reopen the the notepad file.
Subscribe to:
Posts (Atom)