How to find out the distinguished name of the information store to feed to IExchangeManageStore::GetMailboxTable? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T04:26:37Zhttp://stackoverflow.com/feeds/question/80831http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/80831/how-to-find-out-the-distinguished-name-of-the-information-store-to-feed-to-iexcha1How to find out the distinguished name of the information store to feed to IExchangeManageStore::GetMailboxTable?Sebastian2008-09-17T07:35:06Z2008-12-30T14:50:49Z
<p>There is a <a href="http://support.microsoft.com/?scid=194627" rel="nofollow">Microsoft knowledge base article</a> with sample code to open all mailboxes in a given information store. It works so far (requires a bit of <a href="http://blogs.msdn.com/jasonjoh/archive/2004/08/01/204585.aspx" rel="nofollow">copy & pasting</a> on compilers newer than VC++ 6.0).</p>
<p>At one point it calls IExchangeManageStore::GetMailboxTable with the distinguished name of the information store. For the Exchange 2007 Trial Virtual Server image it has to look like this: </p>
<pre><code>"/o=Litware Inc/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=servers/cn=DC1".
</code></pre>
<p>Using <a href="http://www.dimastr.com/outspy/" rel="nofollow">OutlookSpy</a> and clicking on IMsgStore and IExchangeManageStore reveals the desired string next to "Server DN:".</p>
<p>I want to avoid forcing the user to put this into a config file. So if OutlookSpy can do it, how can my application find out the distinguished name of the information store where the currently open mailbox is on?</p>
http://stackoverflow.com/questions/80831/how-to-find-out-the-distinguished-name-of-the-information-store-to-feed-to-iexcha/82342#823420Answer by Duncan Smart for How to find out the distinguished name of the information store to feed to IExchangeManageStore::GetMailboxTable?Duncan Smart2008-09-17T12:02:38Z2008-09-17T12:02:38Z<p>It'll be in Active Directory, so you'd use ADSI/LDAP to look at CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=<em>example</em>,DC=<em>com</em>. Use Sysinternals' ADExplorer to have a dig around in there to find the value you're looking for.</p>
http://stackoverflow.com/questions/80831/how-to-find-out-the-distinguished-name-of-the-information-store-to-feed-to-iexcha/90972#909721Answer by Sebastian for How to find out the distinguished name of the information store to feed to IExchangeManageStore::GetMailboxTable?Sebastian2008-09-18T08:36:36Z2008-09-18T14:12:54Z<p>Thinking there must be a pure MAPI solution, I believe I've figured out how OutlookSpy does it.
<br><br><br>
The following code snippet, inserted after </p>
<pre><code>printf("Created MAPI session\n");
</code></pre>
<p>in the example from <a href="http://support.microsoft.com/kb/194627" rel="nofollow">KB194627</a>, will show the <em>Server DN</em>.</p>
<pre><code>LPPROFSECT lpProfSect;
hr = lpSess->OpenProfileSection((LPMAPIUID)pbGlobalProfileSectionGuid, NULL, 0, &lpProfSect);
if(SUCCEEDED(hr))
{
LPSPropValue lpPropValue;
hr = HrGetOneProp(lpProfSect, PR_PROFILE_HOME_SERVER_DN, &lpPropValue);
if(SUCCEEDED(hr))
{
printf("Server DN: %s\n", lpPropValue->Value.lpszA);
MAPIFreeBuffer(lpPropValue);
}
lpProfSect->Release();
}
</code></pre>
<p><br><br>
<strong>Update:</strong><br>
There is the function <em>HrGetServerDN</em> in the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=36a309c3-8c55-4476-8785-cafc59a2d075&DisplayLang=en" rel="nofollow">EDK 5.5 source code</a>, it extracts the <em>Server DN</em> from a given session's <em>PR_EMS_AB_HOME_MTA</em>. I'll try it if the other way turns out to be unreliable.</p>
http://stackoverflow.com/questions/80831/how-to-find-out-the-distinguished-name-of-the-information-store-to-feed-to-iexcha/400448#4004480Answer by Cain T S Random for How to find out the distinguished name of the information store to feed to IExchangeManageStore::GetMailboxTable?Cain T S Random2008-12-30T14:50:49Z2008-12-30T14:50:49Z<p>I'd download the source for MFCMapi and see how they do this.</p>