[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

Discussion Overview

The discussion revolves around a method for locking a folder in Windows OS without using additional software. Participants explore the effectiveness and security of a password-protected batch file approach, questioning its practicality and security implications.

Discussion Character

  • Technical explanation
  • Debate/contested

Main Points Raised

  • One participant describes a method using a batch file to create a password-protected folder called "Locker".
  • Another participant questions the necessity of a password, suggesting that anyone can access the code and see the password.
  • Further replies emphasize that the password does not add security, as the folder can be easily renamed and attributes changed to access it without the password.
  • Some participants argue that the method is ineffective since the password is not truly secure and can be bypassed.

Areas of Agreement / Disagreement

Participants generally disagree on the effectiveness and security of the password protection method. Multiple competing views remain regarding the utility of using a password in this context.

Contextual Notes

Participants express concerns about the method's reliance on the batch file and the visibility of the password, indicating limitations in its security. There is also an assumption that users may not have advanced knowledge of file attributes.

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:
 

Similar threads

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