Centos

如何找出 Active Directory 使用者的 UID?

  • September 5, 2021

我只想驗證以下輸出:

id ad_user

是正確的。在我的 rhel 客戶端上,我得到 uid=1234。

如何在 Windows 域控制器上驗證這一點?

它只是一個 AD 屬性,uidNumber.

例如,使用 PowerShell:

Get-ADUser john.doe -Properties * | select SamAccountName,uidNumber

當然你也可以只使用 UI。

引用自:https://serverfault.com/questions/1034143