cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
elKastr0nom
Engaged Sweeper II
Get-BitLockerVolume -MountPoint C | select EncryptionMethod
4 REPLIES 4
elKastr0nom
Engaged Sweeper II
Yes, Each machine can have a different EncryptionMethod ( https://docs.microsoft.com/en-us/windows/win32/secprov/getencryptionmethod-win32-encryptablevolume) and I need to report on that.
grimstar
Champion Sweeper II
elKastr0nom wrote:
Yes, Each machine can have a different EncryptionMethod ( https://docs.microsoft.com/en-us/windows/win32/secprov/getencryptionmethod-win32-encryptablevolume) and I need to report on that.


Write it as a registry key and query the key?

$encryptionMethod = Get-BitLockerVolume -MountPoint C | select EncryptionMethod -ExpandProperty EncryptionMethod
$regKeyLocation = 'MyOrgKeys'
New-Item -Path "HKLM:\Software\" -Name $regkeyLocation
New-ItemProperty -Path HKLM:\Software\$regkeyLocation -Name EncryptionMethod -Value $encryptionMethod -PropertyType String
CyberCitizen
Honored Sweeper
As in deployed to each machine.
elKastr0nom
Engaged Sweeper II
elKastr0nom wrote:
Get-BitLockerVolume -MountPoint C | select EncryptionMethod


I need this to be attached to each windows Asset.,

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now