Hello all,
I am having some trouble returning a value using Get-QADUser and the -IncludedProperties switch. It seems that there is a difference in the value returned if using the -IncludeAllProperties switch.
In my example this is my difference:
Get-QADUser "domain\user123" -IncludedProperties "edsva-msexch-protocolsettings-owa-enable"
And return:
edsva-msexch-protocolsettings-owa-enable : True
However, if I run this:
Get-QADUser "domain\user123" -IncludeAllProperties
I return:
edsva-msexch-protocolsettings-owa-enable : False
The IncludeAllProperties switch returns the correct value that is stored in ARS while the IncludedProperties returns the incorrect value. Does anyone know why this may be happening? I would like to be able to query an account without using the IncludeAllProperties switch as it takes much longer to gather all of the information.
Any help is greatly appreciated!
Jacob