Windows

How to Enable or Disable BitLocker Auto-Unlock in Windows 11

Richard
Written by
Richard
Feb 15, 2026 Updated Mar 31, 2026 3 min read
How to Enable or Disable BitLocker Auto-Unlock in Windows 11

BitLocker is a tool in Windows 11 that protects your data by encrypting your drives. This means only you (or authorized users) can access the files on your encrypted drives.

Why use BitLocker? It keeps your data safe from others who might try to access your computer.

When you use BitLocker on a drive, you can set it so the drive automatically unlocks when you sign in to your computer. This is called auto-unlock. What happens when you turn it on? The drive opens automatically after you log in. You don’t have to enter a password every time. Your data still stays safe from others.

You can use auto-unlock on USB drives, external drives, or fixed drives (like a second hard drive inside your PC). This guide will show you simple steps to turn BitLocker auto-unlock on or off for your drives.

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

Follow these easy steps:

  1. Click the Start button. Type Control Panel. 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, click Turn off auto-unlock.

Here’s what it looks like when you turn auto-unlock on for a fixed drive:

Windows 11 turn on BitLocker auto unlock for fixed drive

And here’s the screen when auto-unlock is turned off:

Windows 11 turn off BitLocker auto unlock for fixed drive

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

If you like using commands, you can do this with either Command Prompt or PowerShell. Here’s how:

Step 1: Open Windows Terminal

Right-click the Start button. Choose Windows Terminal. You can also open Windows Terminal guide if you want help.

Step 2: Use the Commands

FLAG: Admin privileges required for this step.

To turn on auto-unlock for a drive (replace E with your drive letter):

💻Code
manage-bde -autounlock -enable E:

To turn off auto-unlock for a drive:

💻Code
manage-bde -autounlock -disable E:

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

You can also use PowerShell. This is another tool for running commands on Windows.

FLAG: Admin privileges required for this step.

Open PowerShell. Type PowerShell in the Start menu. Click the app. See this guide if you need help.

To turn on auto-unlock, type this command and press Enter (replace E: with your drive letter):

💻Code
Enable-BitLockerAutoUnlock -MountPoint "E:"

To turn off auto-unlock, type this command and press Enter:

💻Code
Disable-BitLockerAutoUnlock -MountPoint "E:"

That’s it! Your drive will now either unlock automatically when you sign in or require you to unlock it manually. It depends on what you chose.

Summary

  • BitLocker helps keep your data safe by encrypting your drives.
  • Auto-unlock lets your encrypted drives open automatically after you log into Windows. This saves 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. Turning it on makes accessing your files faster.
  • If you want to learn more about setting up BitLocker, here’s a helpful guide: How to Turn On BitLocker in Windows 11.

Was this guide helpful?

Tags: #Windows 11
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.

2471 articles → Twitter

📚 Related Tutorials

How to Change BitLocker Encryption in Windows 11
Windows How to Change BitLocker Encryption in Windows 11
How to Set BitLocker to Unlock Your Windows 11 PC Automatically
Windows How to Set BitLocker to Unlock Your Windows 11 PC Automatically

Leave a Reply

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