We have a Deprovision Rule in where we want to set "hide from address lists" in exchange, if it is not already set.
but this does not work? what can i do, to first check if this is already set?
Hello,
The check should be performed using the below script in the If PowerShell script returns true condition.
$Context.ConditionIsMet = $False try { $mailboxParams = $Context.TargetObject.GetMailParameters() } catch { return } $Context.ConditionIsMet = $mailboxParams.HiddenFromExchangeAddressList -eq $False
I am trying to have a scheduled job that will hide groups that are empty and I can not seem to figure out how to do it.
We have configured Adaxes to make accounts that have been Deprovisioned be disabled and hidden from GAL but they are still showing up in GAL. In Adaxes the account ... the sync is not completely working. Any suggestions on configurations will help. Thank you
We are on 3.3.8507. We are using Adaxes to prepare users for deletion. Adaxes change the Exchange attribute to "msExchHideFromAddressLists=true". When we check our Exchange ... and they disappear. The Adaxes method does not seem to truly hide them. Ideas?
Hello - I have configured some custom property patterns for office location and Department and am seeing a drop down list when attempting to create a new user limited to the ... down list. Is this therefore only limited to some AD attributes and not others ?
I am trying to send a $context.logmessage from a condition script in a Scheduled Task but I get nothing in the log. Is this not possible? Morten A. Steien