add "additional mailboxes"

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all.
I already posted this answer in the "install and configure" NG, without reply.
I hope someone of you can help me.

I need to add "additional mailboxes" to an Exchange profile
programmatically, in Outlook.
I can configure close everything I need using a ".prf" file.
But I can configure just one mailbox for a user.
There is a "post-configuration" way trough vba or vbscript to add the
mailboxes to the profile?

Thank you all for your help
SubnetJO, Italy
 
Can't be done with a .prf file or any Outlook object model script, only with Extended MAPI (which means C++ or Delphi) or with the Profman library that comes with the redistributable version of Redemption (http://www.dimastr.com/redemption/)

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
The recently added RDO family of Redemption objects can also do that through
the RDOSession.Stores.AddDelegateExchangeMailBoxStore() method.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

Can't be done with a .prf file or any Outlook object model script, only with
Extended MAPI (which means C++ or Delphi) or with the Profman library that
comes with the redistributable version of Redemption
(http://www.dimastr.com/redemption/)

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top