Mar 01 2023 05:57 AM
Hi,
we have exchange hybrid environment and I want to create a custom address list for our pool cars/projectors/cameras.
Since this can be done only over Powershell I execute a simple command: New-AddressList -Name 'Pool Cars', recipientfilter needs fine tuning but I have manged to get one car into the list with the customattribute1 which has a value: car. So far so good. But the list is not showing in the outlook client or outlook OWA.
We are currently having a problem when downloading an OAB, and it states 0x80190194, event viewer shows "OAB Download Failed. (Result code in event data)." Event ID 27". I expect this to be solved by our colleagues but I should still be able to see the new list in OWA?
Am I missing some step to enable the list in the outlook address book? It is being listed under root container or \.
Cheers
Mar 20 2023 07:39 AM
Mar 20 2023 10:39 AM
SolutionHi @Tonito_Dux,
I was able to reproduce your issue. I created an AddressList named 'Pool Cars'. This one wasn't available in OWA/Outlook.
After that, I created a new one wit the following cmdlt:
New-AddressList 'Pool Cars' -Container "\Pool Cars"
Same result. Address List missing. Then I edited it like the following, ( only as example/testing 😞
Set-AddressList 'Pool Cars' -RecipientFilter "(RecipientType -eq 'UserMailbox')"
After some minutes of replication, the address list was available:
You could also check the address list state with:
Get-AddressList 'Pool Cars' | fl Container,Path,DisplayName,IsValid,IncludedRecipients
Regarding missing object in a Hybrid environment address list, that's a know issue and easy to fix:
New address lists do not contain all recipients - Exchange | Microsoft Learn
Regarding the OAB error, please check:
Description of Offline Address Book logging in Outlook - Microsoft Support
And here some best practices:
Address lists in Exchange Online | Microsoft Learn
Hope this helps.
Mar 24 2023 04:00 AM
Mar 20 2023 10:39 AM
SolutionHi @Tonito_Dux,
I was able to reproduce your issue. I created an AddressList named 'Pool Cars'. This one wasn't available in OWA/Outlook.
After that, I created a new one wit the following cmdlt:
New-AddressList 'Pool Cars' -Container "\Pool Cars"
Same result. Address List missing. Then I edited it like the following, ( only as example/testing 😞
Set-AddressList 'Pool Cars' -RecipientFilter "(RecipientType -eq 'UserMailbox')"
After some minutes of replication, the address list was available:
You could also check the address list state with:
Get-AddressList 'Pool Cars' | fl Container,Path,DisplayName,IsValid,IncludedRecipients
Regarding missing object in a Hybrid environment address list, that's a know issue and easy to fix:
New address lists do not contain all recipients - Exchange | Microsoft Learn
Regarding the OAB error, please check:
Description of Offline Address Book logging in Outlook - Microsoft Support
And here some best practices:
Address lists in Exchange Online | Microsoft Learn
Hope this helps.