Advertisement
Guest User

Lock Folder 2.0

a guest
Oct 19th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. @ECHO OFF
  2. if EXIST "Secure" goto LOCK
  3. if NOT EXIST "Secure" goto UNLOCK
  4. :LOCK
  5. echo choose password...
  6. set/p "pass=>"
  7. ren Secure "Control Panel.{"%pass%"}"
  8. attrib +h +s "Control Panel.{"%pass%"}"
  9. goto End
  10. :UNLOCK
  11. echo Enter password to Unlock Your Secure Folder
  12. echo Or type "create" for create a new folder...
  13. set/p "pass=>"
  14. if %pass%==create goto FOLDER
  15. attrib -h -s "Control Panel.{"%pass%"}"
  16. ren "Control Panel.{"%pass%"}" Secure
  17. :FOLDER
  18. md Secure
  19. :End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement