User479513661 posted
i want to create a mailbox from a AD user,and i find an example in
http://www.kbalertz.com/Feedback_313114.aspx
string homeMDB = "CN=Mailbox Store (Your Server),CN=Your Storage Group,"
+ "CN=InformationStore,CN=Your Server,CN=Servers,"
+ "CN=Your Administrative Group,CN=Administrative Groups,"
+ "CN=Your Org,CN=Microsoft Exchange,CN=Services,"
+ "CN=Configuration,DC=Yourdomain,DC=Com";
//Obtain the IMailboxStore interface, create the mailbox, and commit the changes.
mailbox = (IMailboxStore)user.NativeObject;
mailbox.CreateMailbox(homeMDB);
user.CommitChanges();
But i don't know what is my "Strage Group" and "Administrative Group". I can't find it in my AD . And i want to know how replace the "homeMDB " 'option to my applicaiton
helps
i would be appreciated from any suggestion