Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which registry keys determine the Outlook Profile

I need to write a VBScript code to check whether outlook is using MAPI profile or RPC over HTTP/S profile.

So can anybody let me know which registry key decides the same?

Please help.

like image 393
Tejas Avatar asked Nov 21 '12 21:11

Tejas


People also ask

How do I remove Outlook profile from registry?

In the search box or Run window, type in regedit, then press Enter. Right click on the folder with your profile name and click Delete. When prompted click on Yes. Close everything out and restart your computer.

How do I change my Outlook profile in the registry?

Click the downward facing triangle next to the "Profiles" link in the left pane of the Registry window. The name of the profile that you wish to rename should appear below. Right-click this profile name, and then select "Rename."

How do I find my default Outlook profile?

Set a default profileIn the Choose Profile dialog box, in the Profile Name list, click the profile that you want to be the default. Click Options, and then, under Options, select the Set as default profile check box.


2 Answers

This has changed in Outlook 2013:

  • What's new for Outlook 2013 developers – Coexistence with previous Outlook versions

Profiles are stored under keys:

HKEY_CURRENT_USER\Software\Microsoft\Office\<version>\Outlook\Profiles

Where <version> is one of the following:

  • Office 97 – 7.0
  • Office 98 – 8.0
  • Office 2000 – 9.0
  • Office XP – 10.0
  • Office 2003 – 11.0
  • Office 2007 – 12.0
  • Office 2010 – 14.0 (sic!)
  • Office 2013 – 15.0
  • Office 2016 – 16.0

The above version info was copied from this answer.

like image 62
robotox Avatar answered Sep 21 '22 02:09

robotox


HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles\Outlook


HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Simple MAPI-CMC
like image 32
Akshay Joy Avatar answered Sep 20 '22 02:09

Akshay Joy