how to lock a folder without any software Windows 8 / Windows 7


Author: Rajesh Dhalange
110082 View
3m 53s Lenght
198 Rating


This video will show you how to lock folder / files on windows 8 , windows 8 without any third party software download file from following link https://docs.google.com/file/d/0B-RB2Hep-qWbbDVXMk9WYW1hakE/edit?usp=sharing


Comments

  1. thank u
  2. super
  3. Thanks brother
  4. it said invalid password
  5. THANKs BRO.
  6. hey my folder was locked.. but when i give password to locker.. it says invalide password... plz help how to recover my folder
  7. This does work...but if we search the file which we had locked in the folder, It comes up and we can execute it
  8. so how do you remove the lock???
  9. thanks bro
  10. Very nice bro, but to rename the lock folder with other name bro.
  11. thanks
  12. thnx
  13. Thanks Rajesh
  14. thank you so muchh
  15. but this is long process how make simple simple process
  16. ty
  17. Thanks It's also worked in Xp 
  18. good work thanks 
  19. nice it works :D 
  20. cls
    @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=>"

    REM "Enter Password here"

    if NOT %pass%==eee 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
    :End