Hi,
Did those computers joined domain before encrypted?
We need to joined domain before encrypted, if not, additional steps is necessary to backup recovery key to AD manually. Please refer to: What if BitLocker is enabled on a computer before the computer has joined the domain?
Does the issue occur after encrypted?
Are you using SCCM or MBAM to manage BitLocker?
I also would like to confirm if those issue occurred devices located in a same group with other works well device in AD.
Please run "gpresult /h gp.html" as administrator, it will generated a report in C drive named as gp.html, to check if those issue occurred devices have applied BitLocker group policy.
If your domain controller is unreachable at the time when the BitLocker setup wizard is run, the backup will fail.
If you encounter such issue, we could use the following backup script as administrator to backup recovery key again. (Source link)
$BitLocker = Get-BitLockerVolume -MountPoint $env:SystemDrive
$RecoveryProtector = $BitLocker.KeyProtector | Where-Object { $_.KeyProtectorType -eq 'RecoveryPassword' }
Backup-BitLockerKeyProtector -MountPoint $env:SystemDrive -KeyProtectorId $RecoveryProtector.KeyProtectorID
BackupToAAD-BitLockerKeyProtector -MountPoint $env:SystemDrive -KeyProtectorId $RecoveryProtector.KeyProtectorID
Bests,
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.