Navigate to your organization’s or Self-Service Portal URL. Enter the Key ID and the reason for the request.
param( [Parameter(Mandatory=$true)] [string]$ComputerName, [Parameter(Mandatory=$true)] [string]$KeyID get bitlocker recovery key from active directory
Get-ADObject -Filter objectclass -eq 'msFVE-RecoveryInformation' -SearchBase "CN=ComputerName,OU=Workstations,DC=yourdomain,DC=com" -Properties msFVE-RecoveryPassword, msFVE-RecoveryGuid Navigate to your organization’s or Self-Service Portal URL
: Right-click the computer object and select Properties . DC=com" -Properties msFVE-RecoveryPassword
must be configured to store BitLocker recovery information in AD DS.
It happens to every IT admin at least once. A user calls on a Monday morning: "My laptop is asking for a 48-digit recovery key, and I have no idea what it is."
Navigate to your organization’s or Self-Service Portal URL. Enter the Key ID and the reason for the request.
param( [Parameter(Mandatory=$true)] [string]$ComputerName, [Parameter(Mandatory=$true)] [string]$KeyID
Get-ADObject -Filter objectclass -eq 'msFVE-RecoveryInformation' -SearchBase "CN=ComputerName,OU=Workstations,DC=yourdomain,DC=com" -Properties msFVE-RecoveryPassword, msFVE-RecoveryGuid
: Right-click the computer object and select Properties .
must be configured to store BitLocker recovery information in AD DS.
It happens to every IT admin at least once. A user calls on a Monday morning: "My laptop is asking for a 48-digit recovery key, and I have no idea what it is."