Monday, 23 March 2015
[TUTORIAL]Lock a Folder without any software
Lock and Hide Your files with this Simple code.This method is very rare so no one ever think that your files is hidden there.
Open NotePad and Paste Below Code their
cls
@ECHO OFF
title This Folder is locked
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo -----------------------------------------------------------------------------------------------------------------------------
echo This is made by UnArm3D from www.hackersofhell.com and www.thegeekystuff.com
echo -----------------------------------------------------------------------------------------------------------------------------
echo lock this 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 MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo -------------------------------------------------------------------------------------------------------------------------------------
echo Welcome!
echo This Drive is locked!
echo Please enter your password to unlock this FOLDER!
echo This is made by UnArm3D from www.hackersofhell.com and www.thegeekystuff.com
echo Visit For More Info.
echo --------------------------------------------------------------------------------------------------------------------------------------
set/p "pass=>"
if NOT %pass%== PASSWORD goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Welcome! Visit www.hackersofhell.com and www.thegeekystuff.com for more tutorials.
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End
Change Red labeled "PASSWORD" with your desired password in above Code.
Save this as "any name.bat {" Change "any name" with your desired one but .bat extension is compalsary}
After saving, double click on it and you will see a new folder will created automatically having
name "MyFolder"
copy and paste all the files which you want to hide in that folder.Then double click on "any name.bat" and Press "y" to lock this folder. After pressing "y" you can see the folder will hide automatically.
You can again open this folder by double clicking on "any name.bat" then type your "PASSWORD".Your hidden folder will be shown now.
You have to this process everytime you need to lock and Unlock this Hidden folder.
Subscribe to:
Post Comments
(
Atom
)
No comments :
Post a Comment