PowerShell 経由で SSH 公開キー属性をエクスポートするための PowerShell コマンドを取得するには、あなたの助けが必要です。
次のコマンドは機能しません
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