英文:
Change the mailbox name when creating a new profile with ProfMan
问题
我正在使用ProfMan创建一个带有多个Exchange邮箱的Outlook配置文件。
每个邮箱都以“Microsoft Exchange”作为邮箱名称创建,而不是电子邮件地址,这使得在Outlook的“以...身份发送”字段中无法区分它们。
我一直在尝试找到正确的ProfSect项来更新,但无法确定它是哪一个。
英文:
I'm using ProfMan to create an Outlook Profile with multiple exchange mailboxes.
Each mailbox is creating with a mailbox name of 'Microsoft Exchange' instead of the email address this makes it impossible to tell them apart in the Outlook 'send as' field.
I've been trying to find the correct ProfSect item to update but cant figure out which one it is.
答案1
得分: 0
帐户名称不再存储在MAPI配置文件会话中;Outlook使用IOlkAccountManager
。创建新帐户后,您可以从RDOSession.Accounts
集合中检索它,并设置RDOAccount.Name
属性。
请记住,如果Outlook正在运行,IOlkAccountManager
在您调用RDOSession.Accounts.RefreshFromMAPI
之前将无法看到它(目前尚未公开提供 - 将在即将推出的版本6.5中提供)。
英文:
The account name is no longer stored in the MAPI profile session; Outlook uses IOlkAccountManager
. After creating a new account, you can retrieve it from the RDOSession.Accounts
collection and set the RDOAccount.Name
property.
Keep in mind that if Outlook is running IOlkAccountManager
won't see it until you call RDOSession.Accounts.RefreshFromMAPI
(not yet publicly available - it will be in the upcoming version 6.5).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论