Guest User

Untitled

a guest
Aug 30th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. cls
  2. @ECHO OFF
  3. title Folder Personal
  4. if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
  5. if NOT EXIST Personal goto MDLOCKER
  6. :CONFIRM
  7. echo Are you sure u want to lock the folder(Y/N)
  8. set/p "cho=>"
  9. if %cho%==Y goto LOCK
  10. if %cho%==y goto LOCK
  11. if %cho%==n goto END
  12. if %cho%==N goto END
  13. echo Invalid choice.
  14. goto CONFIRM
  15. :LOCK
  16. ren Personal "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
  17. attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
  18. echo Folder locked
  19. goto End
  20. :UNLOCK
  21. echo Enter password to Unlock folder
  22. set /p "pass=>"
  23. if NOT %pass%==password goto FAIL
  24. attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
  25. ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Personal
  26. echo Folder unlocked successfully
  27. goto End
  28. :FAIL
  29. echo Invalid password
  30. goto UNLOCK2
  31. :FAIL2
  32. echo Invalid password
  33. goto end
  34. :MDLOCKER
  35. md Personal
  36. echo Folder created successfully
  37. goto End
  38. :UNLOCK2
  39. echo Last chance to enter correct password to unlock folder
  40. set /p "pass=>"
  41. if not %pass%==password goto FAIL2
  42. attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
  43. ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Personal
  44. echo Folder unlocked successfully
  45. :End
Advertisement
Add Comment
Please, Sign In to add comment