
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2021 10:47 PM
4 REPLIES 4

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-21-2021 07:02 PM
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.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-22-2021 09:42 PM
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

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-21-2021 07:18 AM
As in deployed to each machine.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2021 10:51 PM
elKastr0nom wrote:
Get-BitLockerVolume -MountPoint C | select EncryptionMethod
I need this to be attached to each windows Asset.,
