If you want to export multiple Outlook contacts as vCard files in bulk, you can utilize the two means introduced in this article.
There is no doubt that it is very easy to export an Outlook contact as vCard file. You can simply select a contact and then turn to “File” menu and hit “Save As”. In the popup “Save As” dialog box, “vCard File” type option is available by default. But, if you select multiple contacts and use “Save As”, there is only “Text File” option. So, provided that you would like to bulk export many contacts as separate vCard files, you have to seek other means. Here we will introduce you two ways.
Method 1: Forward Contacts as Business Card
- To start with, launch your Outlook application.
- Then switch to “Contacts” pane and open the correct Contacts folder.
- Next select the contacts which you want to export as vCard files.
- Subsequently, select “Forward Contact” > “As a Business Card”.
- After that, a new message will show up, in which all the selected contacts are being attached.
- Now you should select all the attached business cards in “Attach” line.
- Later you can drag and drop them to the local drive, like the image below:
- At once, you will get the separate vCard files in the local drive.
Method 2: Batch Export as vCards with Outlook VBA
- In the first place, press “Alt + F11” key buttons in main Outlook window.
- Then you will get access to Outlook VBA editor.
- Next you need to copy the following VBA codes into a not-in-use module.
Sub ExportMultipleContactsAsVCards() Dim objSelection As Outlook.Selection Dim objContact As Outlook.ContactItem Dim objItem As Object Set objSelection = Outlook.Application.ActiveExplorer.Selection 'If want to export all contacts, use the following lines instead 'Dim olContacts as Outlook.Items 'Set olContacts = Outlook.Application.Session.GetDefaultFolder(olFolderContacts).Items 'For Each objItem In olContacts For Each objItem In objSelection If TypeOf objItem Is ContactItem Then Set objContact = objItem 'Change the predefined local folder for saving the vCards objContact.SaveAs "E:\" & objContact.FullName & ".vcf", olVCard End If Next End Sub
- Subsequently, for convenience, you can add the new VBA project to the Quick Access Toolbar.
- Plus, you should ensure that Outlook permits macros.
- Finally, you can have a try.
- Firstly, select the source contacts.
- Then click the macro button in Quick Access Toolbar.
- After the macro finishes running, you will be able to find the according vCard files in the predefined local folder.
Dispose Vexing PST Problems
If you have utilized Outlook for decades, you must have encountered a variety of PST issues, such as inaccessible PST troubles. In this case, as usual, you can firstly recur to the inbox repair tool. If it fails, you can resort to a more experienced tool, such as DataNumen Outlook Repair.
Author Introduction:
Shirley Zhang is a data recovery expert in DataNumen, Inc., which is the world leader in data recovery technologies, including fix mdf and outlook repair software products. For more information visit www.datanumen.com
Leave a Reply