I've got around 750+ users that I'm going to create mailboxes for. Should I sleep for a bit between creates to not overload the exchange server or does it not matter? I've read that the actual mailbox is not created until the user accesses it or they get mail. I'm using CDOEXM and DirectoryServices in .NET 2.0.
Imports System.DirectoryServices
Imports CDOEXM
...
...
Dim mbx As IMailboxStore = user.NativeObject
mbx.CreateMailbox(store)
user.CommitChanges()