Is there any chance to lock the folders without using any external software?
Is there any way to lock my folders without using any external software? If possible anyone please tell me.......
Thank You..............
Member • Jul 16, 2009
one very old trick is there but it works only on XP. 😔sahithi pallavihi......
Is there any way to lock my folders without using any external software? If possible anyone please tell me.......
Thank You..............
Member • Jul 16, 2009
Member • Jul 22, 2009
Member • Jul 22, 2009
Member • Jul 22, 2009
Member • Jul 22, 2009
Member • Jul 22, 2009
Member • Jul 22, 2009
Please refrain from putting your e-mail id on the forum, if you want to communicate your e-mail id to another member, please send them a private message. Posting your e-mail id here might make you vulnerable to spamming..shreerangbhushanb tell me how to lock the folders without using external software....my e-mail ID is #-Link-Snipped-#
Member • Jul 22, 2009
Member • Jul 23, 2009
Member • Jul 23, 2009
Member • Jul 24, 2009
Member • Jul 24, 2009
Member • Jul 25, 2009
Member • Jul 29, 2009
Member • Jul 29, 2009
Member • Jul 30, 2009
hI....I am not clear about it...can you tell me clearly.......dipen30you can use command attrib -s -h file name which you want to protect
and also us CLSID to hide your folder
Member • Jul 30, 2009
Hi...thanks for your information....Aniket!Ha! this thing is way 2 old now!I know a much powerful trick 2 hide a folder!
Follow these steps—-😁
1.Right click on the folder u want 2 hide.
2.go on 2 “Rename” option on the list.
3.Now press this combination—
Alt+2,5,5
Note—–The 2,5,5 numbers r 2 b used from the number pad on the right side of the keyboard and not from the horizontal pad provided just below the F1,F2,F3……..keys.
This will erase out the name of the folder.
4.to hide the picture of the folder. right click again and this time….select properties on the menu.
5.After the dialog box appears..click on the “customize”tab {the last tab at the top}, and click on “change icon" at the bottom of the dialog box,which is written at the left of a folder picture.
6.After the appearance of the “change icon” dialog box….click on any area within the dialog box,which seems “blank” and press ok.
7.come back 2 the dialog box { 2 the 1 from where u started..😛} and then select apply and then ok.
8.Happy playin’ hide-and-seek wid your foldrs!
9.2 unhide, refresh the screen.
10.u may see the hidden folder blinkin’ everytime the screen is refreshed.
11.go to the place where u see the folder blinkin’ and press right mouse button.
12.Again select “rename” and rename the folder.
13. Again go 2 properties and repeat step 4 to 6 but……instead of selectin’ a blank space,select ne other pic. a nd press ok..!!!
Member • Jul 30, 2009
Member • Jul 30, 2009
Member • Jul 30, 2009
Member • Jul 30, 2009
Hi.. I am sad to say that i dont know about .bat file...😔 😔 Can you tell me where i have to save the code clearly...because i dont have any idea...CrazyGirlI am giving you a code using this you can secure your data. This code will create a folder named as Locker on Desktop. Copy all the data in this folder, execute this code this will ask if you want to lock the folder, press Y and its locked and invisible.
If you want to recheck the contents, again execute the code, it will ask for the password, enter password (#-Link-Snipped-#) you can always change password in code and your folder will appear on the desktop.
Code (You need to copy this code and save it in a .BAT file):
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 #-Link-Snipped-# 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
For any clarification you can contact me,
-CrazyGirl
Member • Jul 30, 2009
Member • Jul 30, 2009
dipen30open cmd then set path of the directory in which your file is stored .
e.g: d:\New folder\...
then write in cmd "attrib +s +h filename.extension" this will hide that file.
and "attrib -s -h filename.extension" this will show that file..
e.g: d:\new folder>attrib +s +h filename.extension .
Member • Jul 30, 2009
Thank you so much for your clear information..Its superb working...CrazyGirlNo Probs !!!
Copy this code, paste in a notepad. Go to File -> Save As, in File name filed save the file as "Locker.BAT"
Remember to use file name (locker.bat) within the double quotes.
PS: <a href="https://en.wikipedia.org/wiki/Batch_file" target="_blank" rel="nofollow noopener noreferrer">Batch File</a>
-CrazyGirl
Member • Aug 4, 2009
Member • Aug 5, 2009
CrazyGirlI am giving you a code using this you can secure your data. This code will create a folder named as Locker on Desktop. Copy all the data in this folder, execute this code this will ask if you want to lock the folder, press Y and its locked and invisible.
If you want to recheck the contents, again execute the code, it will ask for the password, enter password (#-Link-Snipped-#) you can always change password in code and your folder will appear on the desktop.
Code (You need to copy this code and save it in a .BAT file):
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 #-Link-Snipped-# 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
For any clarification you can contact me,
-CrazyGirl
Member • Aug 5, 2009