Registry Tweak Tutorial How to Create your Own File Locker

tRegistry Tweak Tutorial How to Create your Own File Locker

Many days ago Windows System don't have Registry that time. Registry Tweaking was impossible but time changes with technologies hand in hand they evolved in such way we couldn't Imagine.Then came Microsoft... came up with the Windows NT operating System..the configuration data was centralized into what became known as the Windows registry. This registry could be viewed using regedit.exe, but could not be amended, and so was like a huge database of information.

With the inception of Windows 95, Windows 98 and Windows 2000, so the company changed the registry as well. To view the registry now required the use of the regedt32.exe command. This new command saw a user able to make changes to the registry through the command functionality. This new function though did mean that less of the registry could be looked at when compared with the old regedit.exe command.

It wasn’t until Windows XP that the best features of the regedit.exe and regedt32.exe commands were brought together. The registry then became both easier to view and easier to make changes to if required. This functionality has also been included in subsequent operating system, Windows Server and Windows Vista.

Now we can Tweak Registry as much as we want :) in this following tuturial,I'll teach you how to Create your Own File Locker without buying any Folder Guard Software.

Not like third party installations this one is able to create any number of copies in anywhere of your hard drive and lock any number of files and folders.

In this:
Guard any number of folders.
You’re able to use any number of guards.
Different passwords for each folder

Just Copy Code..
Change the part of the coder “Your PASSWORD HERE” as your desired master password.
And save the file as .bat file. Extension should be .bat (Ex. Locker.bat)
Click on it and you can see there will be a folder is created name called “locker”
Put any number of files, folders which you needs to keep away from others.
Again click on the locker.bat, this time it’ll ask you to lock the folder “locker” Folder lockpress “Y” and hit enter.
Folder called locker will be locked and invisible.
Whenever you need to gets back your folder just click on the locker.bat and enters the password which you set at the beginning of this article.








COPY THIS CODE:

ls
@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 stuff by satish
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==TYPE UR 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
Powered by Blogger.