I just want to verify that the output of:
id ad_user
is correct. On my rhel client I get uid=1234.
How can I verify that on the Windows Domain controller?
I just want to verify that the output of:
id ad_user
is correct. On my rhel client I get uid=1234.
How can I verify that on the Windows Domain controller?
It's just an AD attribute, uidNumber
.
For example, with PowerShell:
Get-ADUser john.doe -Properties * | select SamAccountName,uidNumber
Of course you can also just use the UI.