Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Save All My Contacts as VCardsContent of Save All My Contacts as VCards.vbsMD5 Hash: 53025B89D5F4F6802650377739CE72D9 |
||
On Error Resume Next
Const olFolderContacts = 10 Const olVCard = 6 Set objOutlook = CreateObject("Outlook.Application") Set objNamespace = objOutlook.GetNamespace("MAPI") Set colContacts = objNamespace.GetDefaultFolder(olFolderContacts).Items For Each objContact In colContacts strName = objContact.FirstName & objContact.LastName strPath = "C:\Test\" & strName & ".vcf" objContact.SaveAs strpath, olVCard Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |