How to Check Status of BitLocker Drive Encryption for Drive in Windows 10
You can use BitLocker Drive Encryption to help protect your files on an entire drive. BitLocker can help block hackers from accessing the system files they rely on to discover your password, or from accessing your drive by physically removing it from your PC and installing it in a different one. You can still sign in to Windows and use your files as you normally would.
New files are automatically encrypted when you add them to a drive that uses BitLocker. However, if you copy these files to another drive or a different PC, they're automatically decrypted.
BitLocker can encrypt the drive Windows is installed on (the operating system drive) as well as fixed data drives (such as internal hard drives). You can also use BitLocker To Go to help protect all files stored on a removable data drive (such as an external hard drive or USB flash drive).
This tutorial will show you how to use the manage-bde -status or Get-BitLockerVolume command to check the status of BitLocker Drive Encryption for a drive in Windows 10.
You must be signed in as an administrator to be able to check the status of BitLocker.
Contents
- Option One: To Check Status of BitLocker in Command Prompt
- Option Two: To Check Status of BitLocker in PowerShell
Note
The manage-bde -status command provides the following information about a drive on the PC:
- Size
- BitLocker version
- Conversion status
- Percentage encrypted
- Encryption method
- Protection status
- Lock status
- Identification field
- Automatic Unlock
- Key protectors
1 Open an elevated command prompt.
2 Type the command below you want to use below into the elevated command prompt, and press Enter. (see screenshots below)
(See status of all drives)
manage-bde -status
OR
(See status for specific drive)
manage-bde -status <drive letter>:
Substitute <drive letter> in the command above with the actual drive letter you want to check the status of.
For example:manage-bde -status C:
Status: BitLocker encryption in progress
Status: BitLocker turned on (encrypted entire drive)
Status: BitLocker turned on (encrypted used space only)
Status: BitLocker turned off (decrypted)
Note
The Get-BitLockerVolume command provides the following information about a drive on the PC:
- VolumeType = Data or Operating System.
- Mount Point = Drive letter.
- CapacityGB = Size of drive.
- VolumeStatus = Whether BitLocker currently protects some, all, or none of the data on the volume.
- Encryption Percentage = Percent of the volume protected by BitLocker.
- KeyProtector = Type of key protector or protectors.
- AutoUnlock Enabled = Whether BitLocker uses automatic unlocking for the volume.
- Protection Status = Whether BitLocker currently uses a key protector to encrypt the volume encryption key.
1 Open an elevated Powershell.
2 Type the command below you want to use below into the elevated Powershell, and press Enter. (see screenshots below)
(See status of all drives)
Get-BitLockerVolume
OR
(See status for specific drive)
Get-BitLockerVolume -MountPoint "<drive letter>:"
Substitute <drive letter> in the command above with the actual drive letter you want to check the status of.
For example:Get-BitLockerVolume -MountPoint "C:"
Status: BitLocker encryption in progress
Status: BitLocker turned on (encrypted)
Status: BitLocker turned off (decrypted)
That's it,
Shawn
Related Tutorials
- How to Create a BitLocker Drive Encryption Shortcut in Windows 10
- How to Turn On or Off BitLocker for Operating System Drive in Windows 10
- How to Turn On or Off BitLocker for Removable Data Drives in Windows 10
- How to Enable or Disable Use of BitLocker on Removable Data Drives in Windows
- How to Turn On or Off BitLocker for Fixed Data Drives in Windows 10
- How to Add 'Lock Drive' to Context Menu of BitLocker Encrypted Drives in Windows 10
- How to Turn On or Off Auto-unlock for BitLocker Drive in Windows 10
- How to Lock BitLocker Encrypted Drive in Windows
- How to Suspend or Resume BitLocker Protection for Drive in Windows 10