1

I'm trying to lookup a username from dsquery using the office parameter as we store IDs inside of the office parameter.

Any ideas on how to get their username?

I tried

dsquery user -office "IDHERE"

but I got an unknown parameter error.

Aliaksandr Belik
  • 259
  • 6
  • 17
Jamie H
  • 214
  • 1
  • 2
  • 12

1 Answers1

0

dsquery does not have an attribute office. dsget does.

Something like this (untested) should to the job:

dsquery user -limit 0 | dsget user -full -office
Bart De Vos
  • 17,761
  • 6
  • 62
  • 81