Link to home
Start Free TrialLog in
Avatar of kryanC
kryanC

asked on

Is there a way to check to see if a networked machine is encrypted.

I was asked to see if there was a tool, process, or anyway we can ensure all networked machines are encrypted with bitlocker.
Anything would be appreciated and thank you in advance.

Kry
Avatar of kryanC
kryanC

ASKER

Sorry, for the add on, we also need to check to see which devices are currently using bitlocker.

Kry
Rning this command to get Bitlocker status from powershell. First step however is to get the AD module.
Import-Module ActiveDirectory

Open in new window

Manage-Bde -Status c:

Open in new window

Additionally, if you want to do the entire network at once just pipe that through Get-ADComputer like so... (this will search all of AD)
Get-ADComputer | Manage-Bde -Status c:

Open in new window

Let me know how this works for you, it's late and my powershell is getting erroneous as the night progresses.
Avatar of kryanC

ASKER

Wants a filter parameter and when I use the * it only runs on the local machine. Looking at more filter options but thought that would give me all in AD but it did not.
ASKER CERTIFIED SOLUTION
Avatar of Kyle Green
Kyle Green
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of kryanC

ASKER

Thanks that lead me to a better option and allowed me to see all the machines in AD.

Kry