1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ActiveDirectoryからBitlocker回復キーを一覧取得する方法

Last updated at Posted at 2024-07-22

Crowdstrikeがやらかしてくれたので、膨大な数のコンピューターオブジェクトからBitlocker回復キーを一覧取得する必要が出てきました。
少し遅れましたが、「Bitlocker回復キー」を一括取得するPowershellを記載します。

Get-ADObject -Filter "objectclass -eq 'msFVe-RecoveryInformation' -and msFVE-RecoveryPassword -like '*'" -Properties * |
Select-Object CanonicalName,msFVE-RecoveryPassword

または

Get-ADObject -Filter {objectclass -eq 'msFVe-RecoveryInformation' -and msFVE-RecoveryPassword -like '*'} -Properties * |
Select-Object CanonicalName,msFVE-RecoveryPassword

※なぜか msFVE-RecoveryPassword をシングルクォーテーションで括るとエラーになります。

Get-ADComputerだと取れないのは盲点でした。(objectclass 指定して情報抜くことなんてほぼやる機会がない・・・)
あと、複数キーがある場合はCanonicalNameに[ホスト名+取得時刻]となり複数行として記載されます。
基本的には時間が一番新しいものを使うかと思います。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?