Skip to content
Follow
Windows

How to Turn On or Off BitLocker Auto-Unlock in Windows 11

Richard
Written by
Richard
Feb 15, 2026 Updated Aug 13, 2026 2 min read
How to Enable or Disable BitLocker Auto-Unlock in Windows 11
How to Enable or Disable BitLocker Auto-Unlock in Windows 11

BitLocker auto-unlock in Windows 11 lets your computer open encrypted second drives by itself when you turn on your PC. Instead of typing a long password every single time you start Windows, this feature remembers your key and unlocks fixed hard drives, external storage devices, and USB flash drives in the background.

You keep your files safe from outsiders while skipping the annoying pop-up prompt each time you reboot. You can turn this setting on or off in a few clicks using the Settings app or a quick command.

⚡ Quick Answer

Enable or disable BitLocker auto-unlock by navigating to Control Panel System and Security BitLocker Drive Encryption. Select the desired drive and choose “Turn on auto-unlock” or “Turn off auto-unlock.” Alternatively, use Command Prompt or PowerShell with the `manage-bde` or `Enable/Disable-BitLockerAutoUnlock` commands.

How to Turn On or Off BitLocker Auto-Unlock Using Control Panel

Complete these steps:

  1. Click the Start button, type Control Panel , and open it.
  2. Go to System and Security, then click BitLocker Drive Encryption.
  3. Find the drive you want to change in the list (it will say “BitLocker On”).
  4. To turn auto-unlock on, click Turn on auto-unlock next to that drive.
  5. To turn auto-unlock off, if it’s already on, click Turn off auto-unlock.

Here’s what it looks like when auto-unlock is active for a fixed drive:

Windows 11 turn on BitLocker auto unlock for fixed drive
windows 11 turn on bitlocker auto unlock for fixed drive

This panel appears when auto-unlock remains disabled:

Windows 11 turn off BitLocker auto unlock for fixed drive
windows 11 turn off bitlocker auto unlock for fixed drive

How to Turn On or Off BitLocker Auto-Unlock Using Commands

Command-line utilities like Command Prompt or PowerShell provide alternative configuration methods. The procedure requires specific execution steps:

Step 1Open Windows Terminal

Right-click the Start button and choose Windows Terminal. Review the Windows Terminal guide for assistance launching the console.

Step 2Use the Commands

To turn on auto-unlock for a target partition (replace E with the correct drive letter):

💻Code
manage-bde -autounlock -enable E:

To turn off auto-unlock for that same storage volume:

💻Code
manage-bde -autounlock -disable E:

How to Turn On or Off BitLocker Auto-Unlock Using PowerShell

PowerShell (an administrative shell environment) handles these configuration tasks using dedicated cmdlets.

  1. Open PowerShell by typing PowerShell in the Start menu and clicking the app. See this guide if you need help.
  2. To turn on auto-unlock, type this command and press Enter (replace E: with your drive letter):
💻Code
Enable-BitLockerAutoUnlock -MountPoint "E:"
  1. To turn off auto-unlock, type this command and press Enter:
💻Code
Disable-BitLockerAutoUnlock -MountPoint "E:"

Configuration changes take effect immediately, determining whether drives mount automatically during startup or demand manual credential entry.

Summary

  • BitLocker helps keep your data safe by encrypting your drives.
  • Auto-unlock lets your encrypted drives open automatically after you log into Windows, saving time.
  • You can easily turn auto-unlock on or off through the Control Panel, Command Prompt, or PowerShell.
  • Turning off auto-unlock adds an extra layer of security, but turning it on makes accessing your files faster.

Additional drive configuration details appear in the How to Turn On BitLocker in Windows 11 tutorial.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Open Windows Terminal as Admin Automatically
Windows How to Open Windows Terminal as Admin Automatically
How to Change BitLocker Encryption in Windows 11
Windows How to Change BitLocker Encryption in Windows 11
How to Encrypt USB Drives in Windows 11 with BitLocker
Windows How to Encrypt USB Drives in Windows 11 with BitLocker
Windows 11 Control Panel Shortcuts Guide
Windows Windows 11 Control Panel Shortcuts Guide

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *