DistinguishedNameを取得するコマンド(Get-AdUser) |
ActiveDirectory、Entra、PowerShell |
DNを取得するコマンドです。 (DN=DistinguishedName。AD内のオブジェクトの一意表現でCN,OU,DCを組み合わせて表示 ) Get-ADUser -Identity "ユーザーID" -Properties DistinguishedName | Select-Object DistinguishedName
■例■ Get-ADUser -Identity "yamada" -Properties DistinguishedName | Select-Object DistinguishedName
■結果■ DistinguishedName
■関連:ADユーザーのNAME値(CN)を変更するコマンド
|