從 AD 匯出 SSH 公鑰屬性

從 AD 匯出 SSH 公鑰屬性

我需要您的幫助來取得 PowerShell 命令以透過 PowerShell 匯出 SSH 公鑰屬性。

以下命令對我不起作用

 Get-ADUser tanner.kerr | select SamAccountName,sshPublicKeys | export-csv -path C:\Users\abhishek.jayanth\Desktop\newssh.csv

答案1

這假設您已擴展 sshPublicKeys 的 AD 架構並將其儲存為多值屬性。

 Get-ADUser tanner.kerr -Properties sshPublicKeys | Select-Object SamAccountName, @{name="sshPublicKeys";expression={ $_.sshPublicKeys -join ";"}} | Export-Csv -Path C:\Users\a bhishek.jayanth\Desktop\newssh.csv

相關內容