0

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?

Dave M
  • 4,514
  • 22
  • 31
  • 30
bluesquare
  • 137
  • 1
  • 1
  • 10

1 Answers1

1

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.

Gerald Schneider
  • 23,274
  • 8
  • 57
  • 89