如何查找 Outlook .pst 文件的完整路径?
有没有办法通过 API 调用或注册表项以编程方式查找当前用户的 Outlook .pst 文件的位置?
Is there a way to programmatically find the location of the current user's Outlook .pst file(s) through an API call or registry entry?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过 Outlook Redemption,您可以使用
RDOStores
集合迭代 VBA 中的邮件存储,可通过 RDOSession.Stores 属性访问。我正在研究在开箱即用的 VBA 中执行类似操作的可能性...
编辑:
显然,PST 的路径是在 StoreId 字符串中编码的。 Google 出现了此:
刚刚测试,按设计工作。
With Outlook Redemption, you can iterate the message stores in VBA using
RDOStores
collection, accessible via theRDOSession.Stores
property.I am looking into the possibility of doing something similar in out-of-the-box VBA...
EDIT:
Obviously, the path to the PST is encoded in the StoreId string. Google turned up this:
Just tested, works as designed.
该路径应该位于以下位置:
也许这会有所帮助。
The path should be somewhere under:
Maybe this helps a bit.