我正在尝试从 bitlocker 活动目录对象中提取一些属性,我可以使用 PowerShell 并在其中输入所有信息来做到这一点。例如
Get-ADObject -filter 'CN -like "*A3F850A4*"' `
-Properties CanonicalName,msFVE-RecoveryPassword
可以很好地提取属性,但我不知道如何在 -filter 参数中使用变量并让它返回任何信息,这是我尝试过的代码。
[string]$passwordId = Read-Host `
"What is the first 8 charcters of the recovery password id?"
Get-ADObject -filter {CN -like $passwordId} `
-Properties CanonicalName,msFVE-RecoveryPassword
任何帮助将不胜感激,尤其是有关在脚本中使用变量的任何信息。谢谢。