I have Visual Basic Code to create mailbox in exchange 2000 using codex like
this
dim objMailbox as CDOEXM.IMailboxStore
objMailbox.CreateMailbox "LDAP://" + ServerName + _
"/CN=Mailbox Store (FIXAFIXA)" + _
",CN=First Storage Group,CN=InformationStore,CN=" +
_
ServerName + _
",CN=Servers,CN=First Administrative Group," + _
"CN=Administrative Groups,CN=First Organization," +
_
"CN=Microsoft Exchange,CN=Services," + _
"CN=Configuration," + DomainName
what about dim objMailbox as CDOEXM.IMailboxStore in vbscript ?
thx for helping me