I am using exchangelib to script over my exchange email service. I can search email within various folders. I can search contact within some contact folders as well. However, I cannot find a way to search contact over the full Active Directory or Address Book seen in outlook application.
Below is a list of folder shown via exchange lib:
├── Top of Information Store
│ ├── Archive
│ ├── Calendar
│ │ └── Birthdays
│ ├── Contacts
│ │ ├── Companies
│ │ ├── GAL Contacts
│ │ ├── Organizational Contacts
│ │ ├── PeopleCentricConversation Buddies
│ │ ├── Recipient Cache
│ │ ├── {06967759-274D-40B2-A3EB-D7F9E73727D7}
│ │ └── {A9E2BC46-B3A0-4243-B315-60D991004455}
The "Organisational Contacts" folder is empty:
>>> print((account.contacts / "Organizational Contacts").total_count)
0
Any one has every managed to do that?