Skip to content

Instantly share code, notes, and snippets.

@qwtomek
Created August 21, 2012 14:41
Show Gist options
  • Save qwtomek/3416103 to your computer and use it in GitHub Desktop.
Save qwtomek/3416103 to your computer and use it in GitHub Desktop.
Hasło
Quote:
Quote: 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 Napewno chcesz Zablokowac ten 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 ERROR.
goto CONFIRM
:LOCK
ren Private "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder zablokowany
goto End
:UNLOCK
echo Wpisz haslo do odblokowania folderu
set/p "pass=>"
if NOT %pass%== haslo goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Folder Odblokowany Pozytywnie
goto End
:FAIL
echo Nieprawidlowe haslo
goto end
:MDLOCKER
md Private
echo Folder Zalozony pozytywnie
goto End
:End
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment