Showing posts with label Folder Tricks. Show all posts
Showing posts with label Folder Tricks. Show all posts

A Simple Coding Trick To Lock ur Folder

Here is the trick to lock these folders without any software...

   
Consider you want to lock a folder named in your E:\, whose path is E:\.
  
Now open the Notepad and type the following

   
ren .{21EC2020-3AEA-1069-A2DD-08002B30309D}
   
Where is your folder name. Save the text file as loc.bat in the same drive.
   
Open another new notepad text file and type the following

   
ren .{21EC2020-3AEA-1069-A2DD-08002B30309D}

   
Save the text file as key.bat in the same drive.
   
Steps to lock the folder:

   
To lock the folder, simply click the loc.bat and it will transform into control panel icon which is inaccessible.
   
To unlock the folder click the key.bat file. Thus the folder will be unlocked and the contents are accessible

   
NOTE: This Doesn't Work On My Computer But My Friends Said That This Work Awesom On There PC's So Try It On Yours Also

LOck Your Folder Without Any SOftwarE

Here Is A Notepad Trick Which Help You To Lock Your Folder Easily Without Any Software...

Now The Trick Starts.

1. Open Notepad And Type The Following Code Below======
"
"
\"/

2.
cls
:End
@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%==0000 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


3. Save It As Lockit.bat

4. Open The Lockit.bat

5. It Will Create A Locker Folder Put Your Things In It

When You Lock Your Folder It Will Diappear For A While After Unlock It Will Reappear.

NOTE-
In the above code, don’t forget to edit the line that have your password the above code.
The Default Code Is 0000

if NOT %pass%== 0000 goto FAIL