Forum Discussion
EMKody
Mar 29, 2024Brass Contributor
Creating Address Book Policy
Hi all, I am currently trying to create a new Address Book Policy, but I keep getting an error message that says it can't find the address books that I am trying to apply to it. Is someon...
- Apr 03, 2024Get the full set of properties by using
Get-OfflineAddressBook | fl
You don't need to use the GUID per se, but in your examples above you seem to have provided the value of "Offline Global Address List", which is no the identity of your OAB, thus the error. The correct value would be "Default Offline Address Book".
VasilMichev
Mar 30, 2024MVP
Did you create a new OAB, or trying to use the default one? If the latter, use the "Default Offline Address Book" value. The value you are currently providing seems to correspond to the default OAB address list, which is not the same thing as an actual OAB object. Use Get-OfflineAddressBook to list them, and New-OfflineAddressBook to create one, if needed.
You probably want to create a new GAL as well.
You probably want to create a new GAL as well.
EMKody
Apr 01, 2024Brass Contributor
I created a new address list 'Association Contacts', that I want to make available to a single group of users. In this command I am just trying to create an address book policy that assigns the new list to the intended user group. Is it possible to create a policy that uses the existing address books/lists with the addition of the new address list? Maybe I am off the mark in how best to proceed in this scenario, super grateful for any knowledge you can share on this!
- VasilMichevApr 02, 2024MVPYou can reuse the existing GAL/OAB, yes. But you need to provide their corresponding identities (or GUIDs) in the cmdlet above, not the address lists they "consist of".
- EMKodyApr 03, 2024Brass ContributorI see, and how would I retrieve the GUID for the address lists? When I use Get-OfflineAddressBook, I only get the following output: Name: Default Offline Address Book, Versions: {Version4}, AddressLists: {\Offline Global Address List}
- VasilMichevApr 03, 2024MVPGet the full set of properties by using
Get-OfflineAddressBook | fl
You don't need to use the GUID per se, but in your examples above you seem to have provided the value of "Offline Global Address List", which is no the identity of your OAB, thus the error. The correct value would be "Default Offline Address Book".