兑换:AddPSTSTORE 未设置 Display_name
Redemption : AddPSTSTORE not setting Display_name
Store = SessionSrc.Stores.AddPSTStore(pst_path,1,'abc')
我正在使用它来将 pst 文件添加到 Outlook.The 的附加 pst 中,问题是如果我使用下面的
Store = SessionSrc.Stores.AddPSTStore(pst_path,1)
它正确添加 display_name 作为 Personal Folders
。但是当我提供要设置的 display_name
时它不使用它并且仍然添加 pst 作为 Personal Folders
.有没有办法改变display_name
?根据redemption documents ,第三个可选参数用于设置display_name
。它与我期望的有什么不同吗?如果有更多信息请告知需要!!!
添加 PST 存储时,PST 提供程序有时会忽略指定的显示名称。添加商店后尝试设置RDOStore.Name 属性。
Store = SessionSrc.Stores.AddPSTStore(pst_path,1,'abc')
我正在使用它来将 pst 文件添加到 Outlook.The 的附加 pst 中,问题是如果我使用下面的
Store = SessionSrc.Stores.AddPSTStore(pst_path,1)
它正确添加 display_name 作为 Personal Folders
。但是当我提供要设置的 display_name
时它不使用它并且仍然添加 pst 作为 Personal Folders
.有没有办法改变display_name
?根据redemption documents ,第三个可选参数用于设置display_name
。它与我期望的有什么不同吗?如果有更多信息请告知需要!!!
添加 PST 存储时,PST 提供程序有时会忽略指定的显示名称。添加商店后尝试设置RDOStore.Name 属性。