惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
S
SegmentFault 最新的问题
V
Visual Studio Blog
J
Java Code Geeks
宝玉的分享
宝玉的分享
美团技术团队
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
量子位
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
博客园 - 叶小钗
月光博客
月光博客
P
Proofpoint News Feed
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow Blog

博客园 - eFeng.Leung

Single Sign-On for everyone 关于AD编程的一些资料 zz 不同的asp.net web应用程序间共享Session/Application - eFeng.Leung - 博客园 Code Project中几篇关于DNN的文章 Authenticate a user against the Active Directory using the user ID and password User Object User Interface Mapping Lists all entries in the Active Directory Using Active Directory Active Directory and .NET LDAP, IIS and WinNT Directory Services 无法破解的软件注册码算法 SQL2K集群 绑定在 TCP 端口 1433 上失败 使用HTTP访问2003表单登录页 (转) FYI: Getting Started with WebDAV 遭遇 对路径“C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\aa\……”的访问被拒绝 - eFeng.Leung 网络负载平衡部署 Group Panel 在DataGrid里显示Excel文件数据 鼠标移动,改变datagrid里行的色
枚举Exchange Server、SotreGroups和MailStore
eFeng.Leung · 2007-03-26 · via 博客园 - eFeng.Leung

通过这段代码,结合创建 Mailbox 的代码,可以实现获取Exchange环境的Server、StoreGroup、MailStore和Mailbox信息,或在指定Store(比如在所有Store中最少Mailbox的那个,或者人为指定目标Store)中创建Mailbox。

protected void Page_Load(object sender, EventArgs e)

        
{

            DirectoryEntry RootDSE 
= new DirectoryEntry("LDAP://RootDSE");

            
string rootPath = "LDAP://" + RootDSE.Properties["configurationNamingContext"].Value.ToString();

            DirectoryEntry configContainer 
= new DirectoryEntry(rootPath);

 

            DirectorySearcher configSearcher 
= new DirectorySearcher(configContainer);

            configSearcher.SearchRoot 
= configContainer;

            configSearcher.Filter 
= "(objectCategory=msExchExchangeServer)";

 

            
// Enumerate all Exchange Servers

            SearchResultCollection serverResults 
= configSearcher.FindAll();

            
foreach (SearchResult serverResult in serverResults)

            
{

                Response.Write(
"<br/><br/><font color=\"red\">=== Exchange Server: " + serverResult.GetDirectoryEntry().Properties["cn"].Value.ToString() + " ===</font><br/><br/>");

 

                SearchResultCollection storeGroups;

                SearchResultCollection stores;

                
int mailboxCount;

 

                
// Enumerate all Store Groups

                storeGroups 
= SearchContainer(serverResult.Properties["distinguishedName"][0].ToString(),

                    
"(objectCategory=msExchStorageGroup)");

                
foreach (SearchResult storeGroup in storeGroups)

                
{

                    
string storeGroupName = storeGroup.GetDirectoryEntry().Properties["cn"].Value.ToString();

                    Response.Write(storeGroupName 
+ "<br/>");

 

                    mailboxCount 
= 0;

 

                    
// Enumerate All Stores

                    stores 
= SearchContainer(storeGroup.Properties["distinguishedName"][0].ToString(),

                        
"(objectCategory=msExchPrivateMDB)");

                    
foreach (SearchResult store in stores)

                    
{

                        Response.Write(
"&nbsp;&nbsp;" + store.GetDirectoryEntry().Properties["cn"].Value.ToString() + "<br/>");

                        Response.Write(
"&nbsp;&nbsp;&nbsp;&nbsp;Number of Mailboxes: " +

                            store.GetDirectoryEntry().Properties[
"homeMDBBL"].Count.ToString() + "<br/>");

 

                        mailboxCount 
+= store.GetDirectoryEntry().Properties["homeMDBBL"].Count;

                    }


 

                    
string reportMsg = String.Format("Total Number of Mailboxes in Storage Group({0}): {1}<br/><br/>", storeGroupName, mailboxCount);

                    Response.Write(reportMsg);

                }


            }


        }


 

        
private SearchResultCollection SearchContainer(string srvPath, string strFilter)

        
{

            
string ldapPath = "LDAP://" + srvPath;

            DirectoryEntry serverContainer 
= new DirectoryEntry(ldapPath);

 

            DirectorySearcher serverSearcher 
= new DirectorySearcher(serverContainer);

            serverSearcher.Filter 
= strFilter;

            serverSearcher.SearchScope 
= SearchScope.Subtree;

 

            serverSearcher.PropertiesToLoad.Add(
"cn");

            serverSearcher.PropertiesToLoad.Add(
"distinguishedName");

            serverSearcher.PropertiesToLoad.Add(
"homeMDBBL");

 

            SearchResultCollection results 
= serverSearcher.FindAll();

 

            
return results;

        }



     
关于Exchange的收藏夹几个必备站点: