Tuesday, July 26, 2011

How to lock folders without any software


Here is a step-by-step guide on how to lock folder without any software. Follow the steps below to create it. This will take approximately 2 minutes to accomplish.

1.Open Notepad and paste the code below to notepad.
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 This software is created by www.toptechviews.com. Enter password to lock folder or press N to Cancel. After you have entered the password, you will get a folder in this folder named, “Locker”. Copy your files inside this folder and then lock this folder again by open this bat file.
set/p “cho=>”
if %cho%==toptechviews 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%==toptechviews 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
Replace toptechviews with password of your own choice. by default, you password is toptechviews.
2.Save this file as Locker.bat
3.Now Go to the place where you save this file and open it.
4.Type in your password. After that, you will get a folder, Locker. Copy your files in this folder.
5.Now to lock this folder again, open the bat file locker, enter your password and you are done……..!!!!!!!!!

No comments:

like this

Total Pageviews