0% found this document useful (0 votes)
33 views6 pages

Your Gold in My Class

This batch script locks a folder called "Locker" on a Windows system by renaming it to a hidden attribute and prompting the user for confirmation. It also includes options to unlock the folder if the correct password is supplied, or create the Locker folder if it does not already exist.

Uploaded by

MFathurAlHadi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
33 views6 pages

Your Gold in My Class

This batch script locks a folder called "Locker" on a Windows system by renaming it to a hidden attribute and prompting the user for confirmation. It also includes options to unlock the folder if the correct password is supplied, or create the Locker folder if it does not already exist.

Uploaded by

MFathurAlHadi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

YOUR GOLD IN MY CLASS

cls

:End

@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%==senagnz12345 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

You might also like