General Computing
Would you like to react to this message? Create an account in a few clicks or log in to continue.

[Trick]Folder Lock

Go down

[Trick]Folder Lock Empty [Trick]Folder Lock

Post  Admin Sun Aug 10, 2008 7:10 pm

Open Note pad,copy the following code

Code:
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%==password 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

-Change your password on the line
if NOT %pass%==password goto FAIL

-Save that file by extension .bat

-Open the .bat file you created
you will see a folder named 'Locker'

-Copy the files which you want to protect and again open that .bat file and enter the password of your choice and then lock it.

Admin
Admin

Posts : 121
Join date : 2008-08-03

https://gcknowledge.darkbb.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum