How to Enable BitLocker Drive Encryption in Windows 10 and 11

5 min read

Step-by-step guide to enabling BitLocker disk encryption in Windows 10 and 11: TPM requirements, recovery key backup, and encrypting external drives with BitLocker To Go.

Share:TelegramX

BitLocker encrypts your entire drive — if your laptop is stolen, the data is unreadable without your password. Here's how to enable it.


Requirements

  • Windows 10/11 Pro, Enterprise, or Education (not Home)
  • TPM 2.0 chip (most PCs since 2016 have it)

Check TPM:

Get-Tpm | Select-Object TpmPresent, TpmReady

If TpmPresent = True — you're good. If not — enable TPM in BIOS.


Enable BitLocker via GUI

  1. Win + S → search "Manage BitLocker"
  2. Click Turn on BitLocker next to drive C:
  3. Choose how to unlock: TPM (automatic) or Password
  4. Save recovery key — choose Save to Microsoft account or Save to a file
    • Never lose this key — it's your only recovery option
  5. Choose Encrypt used disk space only (faster for new PCs) or Encrypt entire drive (more secure)
  6. Click Start encrypting

Encryption takes 30 minutes to several hours depending on drive size.


Enable via PowerShell

# Encrypt drive C with TPM
Enable-BitLocker -MountPoint "C:" -EncryptionMethod XtsAes256 -TpmProtector

# Enable with TPM + PIN
Enable-BitLocker -MountPoint "C:" -EncryptionMethod XtsAes256 `
  -TpmAndPinProtector -Pin (ConvertTo-SecureString "YourPIN" -AsPlainText -Force)

# Enable with password only (no TPM required)
Enable-BitLocker -MountPoint "C:" -EncryptionMethod XtsAes256 `
  -PasswordProtector -Password (ConvertTo-SecureString "StrongPassword!" -AsPlainText -Force)

# Check encryption status
Get-BitLockerVolume -MountPoint C: | Select-Object MountPoint, EncryptionMethod, ProtectionStatus, EncryptionPercentage

No TPM chip at all? See the dedicated guide: How to Enable BitLocker Without TPM


Backup Recovery Key

# Backup to Active Directory (domain environments)
$keyProtectorId = (Get-BitLockerVolume C:).KeyProtector[0].KeyProtectorId
Backup-BitLockerKeyProtector -MountPoint "C:" -KeyProtectorId $keyProtectorId

Store the recovery key in a safe place — NOT on the encrypted drive itself.


Encrypt External Drive (BitLocker To Go)

Works on USB drives and external HDDs.

  1. Connect the drive
  2. Right-click it in File Explorer → Turn on BitLocker
  3. Set a password
  4. Save recovery key
  5. Click Start encrypting

The drive can be read on any Windows PC — just enter the password when prompted.


Check Encryption Status

Get-BitLockerVolume | Select-Object MountPoint, EncryptionMethod, ProtectionStatus
  • ProtectionStatus: On — drive is protected
  • ProtectionStatus: Off — encryption is paused (normal during Windows updates)

Manage BitLocker via CLI

# Suspend BitLocker (for a BIOS update, etc.)
Suspend-BitLocker -MountPoint "C:" -RebootCount 1

# Resume protection
Resume-BitLocker -MountPoint "C:"

# Lock a removable drive
Lock-BitLocker -MountPoint "E:" -ForceDismount

# Unlock with recovery key
Unlock-BitLocker -MountPoint "E:" -RecoveryPassword "123456-654321-..."

# Disable BitLocker (decrypts the drive)
Disable-BitLocker -MountPoint "C:"

Command Prompt equivalent (manage-bde):

manage-bde -status C:
manage-bde -on C: -RecoveryPassword -SkipHardwareTest
manage-bde -protectors -get C:
manage-bde -off C:

Summary

Manage BitLocker → Turn on → save recovery key → start encrypting. Use XtsAes256 for strongest encryption. Always backup the recovery key — without it, encrypted data is permanently inaccessible.

Frequently Asked Questions

Does BitLocker slow down my PC?

On modern CPUs with AES-NI hardware acceleration: negligible impact (1-3%). On very old CPUs without hardware acceleration: up to 10% in heavy disk I/O workloads.

What happens if I forget my BitLocker PIN?

You need the recovery key. Without both the PIN and the recovery key, the data is permanently inaccessible. Always save recovery keys to your Microsoft account, a USB drive, and a printed copy.

Can I enable BitLocker on Windows 11 Home?

No. BitLocker is Pro/Enterprise only. Windows 11 Home has a limited version called "Device Encryption" — check Settings → Privacy & Security → Device encryption. It requires a Microsoft account.

Related articles

💬 Leave a comment

Comments are moderated before publishing.

← All articles