/
/

How to Turn On or Off Device Encryption in Windows 11

by Grant Funtila, Technical Writer
How to Turn On or Off Device Encryption in Windows 11 blog banner image
How to Turn On or Off Device Encryption in Windows 11 blog banner image

Key Points

  • Rely on device encryption to automatically apply BitLocker-based protection once hardware and account requirements are met.
  • Trigger automatic encryption by signing in with a Microsoft, work, or school account on a device with TPM 2.0 and Secure Boot enabled.
  • Enable or disable device encryption through Settings > Privacy & Security > Device encryption, and back up the BitLocker recovery key before making changes.
  • Verify encryption support using System Information (msinfo32) or PowerShell to check ProtectionStatus for specific drives.
  • Compare device encryption with full BitLocker, which adds advanced management and configuration options in the Pro and Enterprise editions.

Device encryption in Windows 11 automatically enables BitLocker encryption. This feature helps protect business data in case the device gets lost or stolen.

Device encryption turns on automatically when you set up Windows 11 on a device with TPM 2.0 and Secure Boot. You must sign in with a Microsoft, school, or work account.

If you use a local account, encryption does not turn on automatically. On Windows 11 Pro or Enterprise, you can enable BitLocker manually in Settings; Home edition requires signing in with a Microsoft account to activate encryption.

For a visual guide, watch How to Turn On or Off Device Encryption in Windows 11.

Identify unencrypted devices and remediate gaps before they become risks.

Try NinjaOne Endpoint Management® for free

How to turn device encryption on or off in Windows 11

Before enabling or disabling Windows 11’s device encryption, here are some requirements:

  • Trusted Platform Module (TPM) 2.0
  • Unified Extensible Firmware Interface (UEFI) firmware with Secure Boot enabled
  • Modern Standby support on certain device classes (optional)
  • A Microsoft account (for key backup and automatic activation)
  • Administrative rights to disable or reconfigure settings

Turn device encryption on or off via settings

This method is the easiest way to enable or disable device encryption, as you only need to navigate your hardware’s settings. If this setting is not available, your device may not support encryption or is using BitLocker.

Turning device encryption on:

  1. Open Settings (click Win + I).
  2. Click on the Privacy & Security tab on the left.
  3. Press Device Encryption on the right.
  4. Turn Device Encryption on.
  5. It should say, “Encryption is in progress.”
  6. Look for your BitLocker recovery key and back it up for device encryption. You’ll need it to access your Windows drive.

Turning device encryption off:

  1. Open Settings (press Win + I).
  2. Click on the Privacy & Security tab on the left.
  3. Press Device encryption on the right.
  4. Turn Device encryption off.
  5. Click “Turn off” to confirm.
  6. It should say, “Decryption is in progress. You can continue using your device.”

Ways to check device encryption support status

The easiest ways to check if your computer supports device encryption are to inspect the Microsoft System Information or use a PowerShell script.

Method 1: Check using Microsoft System Information

You can check if device encryption is supported on your device by following the steps below:

  1. Press Win + R, type msinfo 32, then press Enter.
  2. Look for “Device Encryption Support” in the System Summary window.
  3. “Meets prerequisites” means you can use the feature.

Method 2: Check device encryption status using PowerShell

Using the code below, you can use PowerShell to check if encryption is enabled:

Get-CimInstance -Namespace root\cimv2\security\microsoftvolumeencryption -ClassName Win32_EncryptableVolume

Where:

  • ProtectionStatus 1 = Encrypted
  • ProtectionStatus 0 = Not encrypted

If you only want to show a specific drive, use this script:

Get-CimInstance -Namespace root\cimv2\security\microsoftvolumeencryption -ClassName Win32_EncryptableVolume |

Where-Object ( $_.DriveLetter -eq “H:” ) |

Select-Object DriveLetter, ProtectionStatus, VolumeType

Note that H: is used as an example here. Change accordingly to check the drive you need.

Why isn’t device encryption available on my device?

There are a handful of possible reasons device encryption isn’t available on your device, such as disabled or unconfigured features. You can pinpoint the reason by following the steps below:

  1. Open Start and type System Information. Right-click System Information, then select Run as administrator.
  2. Look for Device Encryption Support in the System Summary items list.The value tells you the support status of Device Encryption.
    • Meets prerequisites: Device encryption is available.
    • TPM is not usable: The TPM is disabled in the BIOS or UEFI, or your device doesn’t have it.
    • WinRE is not configured: Your device doesn’t have Windows Recovery Environment configured.
    • PCR7 binding is not supported: Either Secure Boot is disabled in the BIOS/UEFI, or you have peripherals connected to your device during boot, such as specialized network interfaces, docking stations, or an external graphic card.

How is device encryption different from BitLocker?

Device encryption and BitLocker both protect data using the same underlying encryption technology, but they differ significantly in how they activate, what they cover, and how much control you have over them.

Device encryption is the simplified, automatic version available on every Windows 11 edition, including Home. It turns on by itself once your hardware meets the requirements and you sign in with a Microsoft, work, or school account. However, you get very little control: no drive-by-drive configuration, no scripting, and no enterprise management tools.

BitLocker, available in Pro, Enterprise, and Education editions, is built for users and organizations that need more control. It supports encrypting multiple drives, choosing your own recovery key storage method, and managing encryption at scale through Group Policy or Microsoft Intune.

FeatureDevice EncryptionBitLocker
ActivationActivates automatically to protect the deviceRequires manual setup and configuration
ConfigurationSimplified and automatic, but with limited controlHas advanced features and lets users configure encryption settings
Recovery key managementAutomatically backed up to a Microsoft accountCentralized recovery key management and greater control over key storage and access
Active Directory-joined devicesTypically not used on devices joined to a local Active Directory domainMay be used with Group Policy Objects (GPOs) on AD-joined devices

Get notified and secure vulnerable endpoints immediately.

Discover NinjaOne for Remote Monitoring and Alerting

Other things to keep in mind regarding device encryption

While device encryption is a valuable feature, it has certain limitations, such as the following:

  • Device encryption is not manually scriptable like BitLocker, as it’s intended to be automatic.
  • There’s no dedicated cmdlet to disable device encryption on its own: manage-bde and related PowerShell disable commands only apply once full BitLocker (not just automatic device encryption) is enabled.
  • You can’t forcibly disable the feature using PowerShell unless BitLocker is activated.
  • If device encryption is enabled, recovery keys are automatically backed up to a Microsoft account.
  • Devices joined to a local Active Directory domain will typically not use device encryption but may use BitLocker with GPOs.
  • If you’re deploying new hardware, ensure BIOS/UEFI settings for TPM, Secure Boot, and Modern Standby are enabled so device encryption can be available post-deployment.

Enable Windows 11’s device encryption to protect your data

Device encryption protects your data if your computer is lost or stolen. It becomes available after you sign in. In some cases, you must turn it on or off yourself.

To manage it, open Settings. Go to Privacy & Security. Select Device encryption and use the toggle to turn it on or off.

FAQs

Your device must have TPM 2.0, UEFI firmware with Secure Boot enabled, and administrative rights. A Microsoft, work, or school account is required for automatic activation and recovery key backup.

Open Settings > Privacy & Security > Device encryption, toggle it off, and confirm. Windows will begin decrypting the drive while allowing continued device use.

Common causes include disabled TPM, Secure Boot turned off, WinRE not configured, or unsupported PCR7 binding. You can confirm the exact reason in System Information under Device Encryption Support.

Device encryption activates automatically with limited configuration and backs up recovery keys to a Microsoft account, while BitLocker (Pro/Enterprise) provides advanced controls, multi-drive encryption, and enterprise management options.

Yes. Devices joined to Microsoft Entra ID (formerly Azure AD) support automatic device encryption the same way personal Microsoft accounts do, with recovery keys backed up to the organization’s Entra ID tenant instead of a personal account.

You might also like

Ready to simplify the hardest parts of IT?