Enter your email address:

Delivered by FeedBurner

YouCMSAndBlog Module Generator Wizard Plugin
Lock your folder without using any software PDF Print E-mail
User Rating: / 1
PoorBest 
Written by jay   
Wednesday, 26 March 2008

This is a different way to lock up ur folder without using any software.This is not hiding ur folder but locking it..using batch file... What is batch file??? It is this file (command.com) which handles all DOS commands that you +give at the DOS prompt---such as COPY, DIR, DEL etc.


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%==type your password here 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

steps to do it........
1) Copy the give code in a note pad and save the note pad in your pc with the name name.bat (that is with the extension of .bat). you can replace the name portion with anything u want.
( In place of password in the code given type your desired password.)


2) A batch file will be created where you have saved. Now double click on it , it will make a folder with the name locker at the same place where the batch file is save.


3) Now add the files you want to be locked in that folder.


4) Double click on the batch file. It will ask for locking the folder formed. Type y(yes). The folder will be locked and hidden.


5) To unlock,double click on batch file again and enter the password in the new window opened.





Digg!Reddit!Del.icio.us!Google!Live!Facebook!Slashdot!Netscape!Technorati!StumbleUpon!Spurl!Simpy!Newsvine!Furl!Blogmarks!Yahoo!Ma.gnolia!Free social bookmarking plugins and extensions for Joomla! websites!
Comments
Add NewSearchRSS
siva - funny   | 212.116.220.112 | 2008-07-10 15:46:08
the code above is locking the folder but wen i type the password its is not retreving back..

Give me details to get that back.

my email ID is siva_wills@rediffmail.com
Write comment
Name:
Email:
 
Website:
Title:
 
:angry::0:confused::cheer:B):evil::silly::dry::lol::kiss::D:pinch:
:(:shock::X:side::):P:unsure::woohoo::huh::whistle:;):s
:!::?::idea::arrow:
 
Security Image
Please input the anti-spam code that you can read in the image.

Copyright (C) 2007 Alain Georgette / Copyright (C) 2006 Frantisek Hliva. All rights reserved.