Tag: Offline Address Book
-
Creating New Equipment Address List in Exchange 2010.
The steps and cmdlets below enabled me configured a separate address list in Exchange 2010 to manage all Equipment. Create the Address List and specify the Recipient Filter: [PS] C:\>New-AddressList -name “All Equipment” -RecipientFilter {RecipientType -eq “UserMailbox” -and RecipientTypeDetails -eq “EquipmentMailbox”} Run the Update-AddressList on the New Address List: [PS] C:\>Update-AddressList -Identity “All Equipment” To…