0

I am in an Exchange 2010/Office 365 migration project. I'm working on Exchange 2010/Office 365 migration. In test environment where I successfully migrated the mail boxes with cutover migration to the cloud.

The next step would be the development of a script, which should create the new profile for the Outlook 2013 and Outlook 2016 clients. I found a script, which creates the necessary registry components, but the Outlook doesn’t start.

Ivan
  • 34,531
  • 8
  • 55
  • 100

1 Answers1

0

There are several way to create a new profile:

  1. Build a .prf file with the desired settings and then run Outlook with the /importprf command-line switch to load and process the profile information from that file. See How to create an Outlook Profile File (*.PRF)
  2. Extended MAPI provides the IProfAdmin interface which allows you programmatically create a profile without user interaction. See How to create MAPI profiles without installing Outlook for more information.
  3. Use third-party utilities for creating profiles. I guess all of them will be built on top of the IProfAdmin interface.

Also you may find the following links helpful:

Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45