How can I check bitlocker status powershell?

2.4K    Asked by ankur_3579 in Cyber Security , Asked on Feb 9, 2022

All machines from my network should have BitLocker successfully applied to them. Is there a way that I can remotely query the machines to see if:Bitlocker has been enabled, Bitlocker has fully encrypted the drive. Ideally I am looking for a way to do it without admin rights.


Answered by Anil Mer

To check Bitlocker status PowerShell command, you can check the BitLocker status on a volume:


Manage-bde -status -cn  
Where the -cn argument is optional. Examples:
Manage-bde -status C:
Manage-bde -status -cn 192.168.1.2 C:
The command can also be run remotely.
Reference: https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/ff829849(v=ws.11)


Your Answer

Interviews

Parent Categories