This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Get-QADuser not returning values for edsvaHomeDirectory

Hello,

    Quest is populating this value for us for every new user created.  I would like to pull a report containing username and edsvaHomeDirectory for all users in AD.

This is what I am running:

get-qaduser -Identity * -Sizelimit '0' -IncludedProperties edsvaHomeDirectory, homeDirectory | select-object name, edsvaHomeDirectory, homeDirectory | export-csv edsvaHomeDirectory.csv

Eventually, I would like to add the value of "edsvaHomeDirectory" to "homeDirectory" - however my report does not contain any data under "edsvaHomeDirectory".

Any suggestions?

Thank you.

Parents
  • Here's my favourite question:

    Prior to executing the above, in your script did you do a "Connect-QADService -proxy"?

    If not, you should OR simply add the "-proxy" switch to your Get command line.

  • Thinking about this a bit more, edsvaHomeDirectory may actually be a "transient" value that is only used when a provisioning policy is setting up the homedirectory.  You may need to look exclusively at HomeDirectory to get the value from AD. 

Reply
  • Thinking about this a bit more, edsvaHomeDirectory may actually be a "transient" value that is only used when a provisioning policy is setting up the homedirectory.  You may need to look exclusively at HomeDirectory to get the value from AD. 

Children
No Data