DownLoad the Txt File: New Text Document
Download
Locking and securing files on your shared Windows PC has never been this easier. Follow this Tutorial to the end to do this for your self.
Requirements:
- Windows PC
- Notepad
Open Notepad and paste this code or Click Download Below:
batCopyEditcls
@ECHO OFF
title Folder Lock
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
: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 Private "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:
set/p "pass=>"
if NOT %pass%==YourPassword goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Folder unlocked.
goto End
:FAIL
echo Incorrect password.
goto End
:MDLOCKER
md Private
echo Private created.
goto End
:End
Replace YourPassword
with your desired password.
Save as locker.bat
and double-click it
.A Private folder will appear—store your files there and. Run locker.bat
again, type Y, and the folder disappears.
Run locker.bat
, enter the password, and it unlocks.
Leave a Reply