Showing posts with label Locking Tips. Show all posts
Showing posts with label Locking Tips. Show all posts

Saturday, June 23, 2012

Create a Password-Protected invisible folder without any software



Copy and paste the following code in notepad


cls
@echo off
title Folder Locker
IF EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B303­09D}" GOTO UNLOCK
IF NOT EXIST Locker GOTO MDLOCKER
echo Folder Created.
:CONFIRM
echo Are you sure you 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-08002B303­09D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B303­09D}"
echo Folder Locked.
GOTO END
:UNLOCK
echo Enter password to unlock the Folder :
set/p "pass="
IF NOT %pass% == YourPasswordHere GOTO FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B303­09D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B303­09D}" LOCK
echo Folder Unlocked Successfully.
GOTO END
:FAIL
echo Invalid Password!
GOTO END
:MDLOCKER
md Locker
echo Folder created.
GOTO END
:END
PAUSE


In the above code change YourPasswordHere with your own password
Save the file with .bat extension. 






Another simple Way 


Step 1: First you have to make your folders totally invisible, to do this follow these steps -
  • Create a new folder with any name
  • Rename the folder with a space (U have to hold ALT key and type 0160).
  • Now u have created a folder without a name or the name is only space.
  • Now Right click on the folder >> properties >> customize.
  • Now click on change icon.
  • Scroll down and you should find some empty spaces.
  • Click on any one of them and Click ok
  • Thats it, now your folder has become invisible .
Step 2: Now you have to follow these steps -
  • Suppose you have a folder named abcd in D:\abcd.
  • In the same drive next to the folder create a new notepad file with the exact statement ren abcd abcd.{21EC2020-3AEA-1069-A2DD-08002B30309D}
  • Now save this text file as loc.bat
  • Create another notepad file and type ren abcd.{21EC2020-3AEA-1069-A2DD-08002B30309D} abcd
  • Save this as key.bat
  • Now there are two batch files . Double click loc.bat and your folder will change into Control Panel and its contents cannot be viewed .
  • To open the folder double click key.bat and you get back your original folder .
  • For more safety keep the key.bat in another location .Only for unlocking copy paste to the original location and double click .
Now if you combine the Step 2 with Step 1 it will be impossible for anyone else to access it except you.

continue reading

Tuesday, September 6, 2011

Lock Your Computer

Creating a desktop shortcut for locking your computer
If you use your computer in an area where others may have access to it, and there are things on your system you would rather have kept confidential, locking your desktop when you leave the computer is an essential task. Here's a recipe for a desktop shortcut that will lock your computer in two easy clicks:
Right click on an empty area of the desktop and choose 'new' then 'shortcut.' The create shortcut wizard will open; in the first text box, type '%windir%\System32\rundll32.exe user32.dll,LockWorkStation' and then give your shortcut an appropriate name on the next page, and hit 'finish.'
You will notice that the shortcut you created has a blank icon. To select a more appropriate one, right click on the shortcut and hit 'properties.' In the 'shortcut' tab, click the 'change icon' button.
In the 'look for icons in this file' box, type '%SystemRoot%\system32\SHELL32.dll' then click 'ok' to see a range of icons for your new shortcut. Choose an appropriate icon. Your desktop locking shortcut is now ready for use. Test it out.

continue reading

Friday, January 1, 2010

Locker Key




Hai Freinds ,Iam Going to introduce an new simple locker acts like as a key.When you press on the key it will generates a Folder called “locker” and you can put your secret files in it.After the insertion press the cmd file one more the locker folder is disappeared.the file can be removed from there.It will open only if u copy the file there and acess it.So reject all other Locking software and use your own locker to lock ur secret files.
This can be usefull for locking removable devices toooooooooo
If u hav any doubts post me as a comment………………………………

continue reading