How to lock a folder in windows 11 without software

Sdílet
Vložit
  • čas přidán 5. 09. 2024
  • This video guides about how to password protect a folder in windows 11.
    Locking a folder in Windows 11 with a password enhances security and privacy by preventing unauthorized access to sensitive or confidential files and data.
    To Set Password in Folder in Windows 11, follow the step by step guide.
    Here are the Steps to Lock Folder in Windows 11:
    1. Open the folder which you want to encrypt with password.
    2. Create a New Text File and paste the folder lock script provided.
    3. Replace "YOUR-PASSWORD" with the password you want to set for this folder.
    4. Save this text file as Batch File by adding ".bat" after the file name.
    5. Open the newly created batch file and you will see a Private Folder.
    6. Place all your content inside this Private Folder.
    7. Run the batch file again to hide and encrypt folder.
    You Folder is now locked and hidden.
    So that's how to password protect a folder in windows 11. If you face any problem during the whole process, ask me in comment section below, I will surely help.
    #lockfolder
    #passwordprotection
    #setpassword
    #windows11
    #folder
    #techrelatedtips
    how to password protect a folder in windows 11, how to set password in folder in windows 11, how to lock a folder in windows 11, how to lock folder in windows 11, folder lock for windows 11, lock folder in windows 11, password protect folder windows 11, how to protect folder with password in windows 11, protect folder with password windows 11, password protect a folder in windows 11, how to password protect folder in windows 11, password protect folder windows 11 home, how to password protect a zip folder in windows 11, windows 11 password protect folder, how to set password for folder in windows 11, how to set password to folder in windows 11, how to set password on folder in windows 11, how to set folder password in windows 11, how to set password in laptop folder windows 11, how to set password to a folder in windows 11, how to set password for a folder in windows 11, how to set password in pc folder windows 11, how to set password in a folder in windows 11, set password for folder in windows 11, how to set password on any folder in windows 11, set password on folder windows 11, how to set password in folder windows 11, how to set a password to a folder in windows 11, how to set password in laptop windows 11 folder, how to set a password in folder windows 11, set password to folder windows 11, how to set a password for folder in windows 11, how to set password in folder in laptop windows 11, set password in folder windows 11, how to set password for folder in windows 11, how to set password in windows 11 folder, how to set password on windows 11 folder, how to set password folder in windows 11, how to set a folder password in windows 11, set folder password windows 11, can we set password for folder in windows 11, how to set password to folder windows 11, how to lock folder in laptop windows 11, how to lock any folder in windows 11, windows 11 folder lock, how to lock folder in windows 11 with password, how to folder lock in windows 11, how to lock the folder in windows 11, how to lock a folder in windows 11 with password, how to create lock folder in windows 11, how to set lock for folder in windows 11, lock a folder windows 11, how to set lock to folder in windows 11, pc folder lock windows 11, how to lock a folder in laptop windows 11, folder lock in windows 11, how to hide and lock folder in windows 11, how to lock folder in pc windows 11, how to keep lock for folder in laptop windows 11, how to create a lock folder in windows 11, how to set lock on folder in windows 11, how to put folder lock in windows 11, how lock folder windows 11, how to lock folder in windows 11 home, how to apply lock on folder in windows 11, how to password lock folder in windows 11, how to put lock on folder windows 11, how to lock laptop folder with password windows 11

Komentáře • 3

  • @TechSolutions168
    @TechSolutions168  Před měsícem +1

    Script to Lock Folder in Windows 11
    ---------------------------------------------------------
    @ECHO OFF
    if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
    if NOT EXIST Private goto MDPrivate
    :CONFIRM
    echo Are you sure to lock this 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 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 Enter password to Unlock Your Secure Folder
    set/p "pass=>"
    if NOT %pass%== YOUR-PASSWORD goto FAIL
    attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
    ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
    echo Folder Unlocked successfully
    goto End
    :FAIL
    echo Invalid password
    goto end
    :MDPrivate
    md Private
    echo Private created successfully
    goto End
    :End

    • @papikza4065
      @papikza4065 Před měsícem

      and how do u delete the file ?

    • @TechSolutions168
      @TechSolutions168  Před měsícem +1

      @@papikza4065 Thanks for query! You can watch this Less than a minute video on "3 ways to delete a file in windows 11":
      czcams.com/video/bva-8aRo_mk/video.html
      Feel Free to comment if you find this video helpful! Thanks Again.