Outlook Mapi access shared contacts
I want to import contacts from Outllok via Mapi. First step with standard contact is no problem: MAPIFolder contactObjects = outlookObj.Session.GetDefaultFolder(OlDefaultFolders.olFolderContacts); foreach (ContactItem contactObject in contactObjects.Items) { ... import contact ... } In a second step I additionally want to import shared contacts. Only thing I found was using OpenSharedItem(sharedContacts.vcf) but I don't know the name of the file (shared item) I want to open. Does someone know how to access shared contacts and can help me out? Tobi Update: Thanks for the hint with the vcf-Files