教えて!HELPDESK

Excel   Word  Outlook  PowerPoint   Windows

  

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
-----------------
CN=yamadataro,OU=MOTusers,OU=Win,DC=Office-qa,DC=local

 

■関連:ADユーザーのNAME値(CN)を変更するコマンド

dsmove "DN" -newname "新しい名前"

 

→ 詳しくはこちら

 

教えて!HELPDESK

Excel   Word  Outlook  PowerPoint   Windows