如何使用UI-路径或不使用UI-路径获取outlook通讯录的dump/export?
How to get the dump/export of outlook's address book using UI-path or without UI-path?
我想使用 UI-path 将我的地址簿中的所有人导出到 excel。如果可能或者有没有其他方法可以导出outlook地址簿。
您可以开发一个 VBA 宏来为您完成这项工作。 NameSpace.AddressLists 属性 returns 一个 AddressLists
集合表示可用于此会话的地址列表集合。 AddressLists
集合表示当前会话的地址簿层次结构的根。一个特定的 AddressList
对象代表一个可用的地址簿。
Set myAddressList = Application.Session.AddressLists("Personal Address Book")
您可能会发现以下文章有帮助:
我想使用 UI-path 将我的地址簿中的所有人导出到 excel。如果可能或者有没有其他方法可以导出outlook地址簿。
您可以开发一个 VBA 宏来为您完成这项工作。 NameSpace.AddressLists 属性 returns 一个 AddressLists
集合表示可用于此会话的地址列表集合。 AddressLists
集合表示当前会话的地址簿层次结构的根。一个特定的 AddressList
对象代表一个可用的地址簿。
Set myAddressList = Application.Session.AddressLists("Personal Address Book")
您可能会发现以下文章有帮助: