Created
September 25, 2017 09:30
-
-
Save SarahBourgeois/e6fbf2ac8fe4cfefb062ef78135a77cd to your computer and use it in GitHub Desktop.
Add a password for a windows folder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cls | |
@ECHO OFF | |
title Folder Private | |
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK | |
if NOT EXIST Private goto MDLOCKER | |
:CONFIRM | |
echo Etes vous sur de vouloir bloquer les fichiers Y=Oui N=Non(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 Entrer votre mot de passe pour debloquer le dossier | |
set/p "pass=>" | |
if NOT %pass%== MOT-DE-PASSE goto FAIL | |
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" | |
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private | |
echo Bien Bloquer GG | |
goto End | |
:FAIL | |
echo Invalid password | |
goto end | |
:MDLOCKER | |
md Private | |
echo Private created successfully | |
goto End | |
:End |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment