在 Exchange 2003 上创建大量邮箱

发布于 2024-07-10 09:16:08 字数 307 浏览 4 评论 0原文

我要为大约 750 多个用户创建邮箱。 我应该在创建之间睡一会儿,以免交换服务器过载,还是没关系? 我读到,在用户访问它或收到邮件之前,不会创建实际的邮箱。 我在 .NET 2.0 中使用 CDOEXM 和 DirectoryServices。

Imports System.DirectoryServices
Imports CDOEXM

...
...

Dim mbx As IMailboxStore = user.NativeObject
mbx.CreateMailbox(store)
user.CommitChanges()

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()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

慈悲佛祖 2024-07-17 09:16:08

我只想去做。 我不认为只有 750 才会在任何类似于现代服务器的设备上造成任何类型的操作问题。

I'd just go for it. I wouldn't expect only 750 to cause any sort of operational problem on anything resembling a modern server.

爱你是孤单的心事 2024-07-17 09:16:08

Exchange 将大部分工作推迟到用户第一次登录为止,因此创建邮箱应该不是什么难事。

Exchage defers most of the work until the user logs in for the first time, so creating the mailboxes shouldn't be much work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文