[TUT] How to lock folder without any software (Windows OS)

  • Thread starter Thread starter Physicsissuef
  • Start date Start date
  • Tags Tags
    Lock Os Software
Click For Summary
The content provides instructions for creating a simple batch file (loc.bat) that locks and unlocks a folder named "Locker" using a password. Users are guided to paste specific code into Notepad, change the placeholder password, and save the file. When executed, the batch file prompts for a password to unlock the folder. However, discussions highlight the limitations of this method, noting that anyone with access to the code can see the password and that the folder can be easily renamed and made visible using command line attributes, rendering the password protection ineffective. The overall consensus suggests that while the method provides a basic level of obfuscation, it does not offer true security for sensitive files.
Physicsissuef
Messages
908
Reaction score
0
First, open Notepad, and paste the code below.

Change the password in the fields where is "type your password"

Go to, File/ Save As...

Save the file as loc.bat

Starting loc.bat will automatically create folder called Locker, which later you could use for protecting your files or folders inside of this folder.

When you will open loc.bat again, it will ask you for password and if you have typed the password correctly, it will unlock your folder.

Enjoy! :smile:

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
 
Computer science news on Phys.org
Isn't the same as
"attrib -h -s your_folder" ?
Why to use a password ? (cause anyone could type the code, and see the password )
 
Last edited:
No. If you type the code again, and save it like loc.bat, you can see the password, since there is already created folder named "Locker".
 
Physicsissuef said:
No. If you type the code again, and save it like loc.bat, you can see the password, since there is already created folder named "Locker".

That's what I said. So, why the password ?
 
FernBarc said:
That's what I said. So, why the password ?

It is useless! The key is in the lock...

Anyway you don't depend on the password. Just rename the folder (any name works) , and execute "attrib -h -s new_name" .

The "locked folder" is gone...

:smile:
 
Thread 'ChatGPT Examples, Good and Bad'
I've been experimenting with ChatGPT. Some results are good, some very very bad. I think examples can help expose the properties of this AI. Maybe you can post some of your favorite examples and tell us what they reveal about the properties of this AI. (I had problems with copy/paste of text and formatting, so I'm posting my examples as screen shots. That is a promising start. :smile: But then I provided values V=1, R1=1, R2=2, R3=3 and asked for the value of I. At first, it said...

Similar threads

  • · Replies 1 ·
Replies
1
Views
10K
  • · Replies 13 ·
Replies
13
Views
4K