用 C# 为用户创建 Exchange 邮箱

发布于 2024-12-10 17:26:08 字数 317 浏览 0 评论 0 原文

我刚刚在 Active Directory 中创建了一个用户。我想为该用户创建一个交换邮箱。我可以只设置一些用户属性吗?像这样的事情:


DirectoryEntry user = ...Get the user
user.Properties["someProerty"] = "someValue";
user.CommitChanges();

创建邮箱需要什么 somePropertysomeValue

有关于如何执行此操作的文档吗?你能告诉我需要设置哪些属性吗?

I just created a user in Active Directory. I would like to create an exchange mailbox for this user. Can I just set some of the users properties? Something like this:


DirectoryEntry user = ...Get the user
user.Properties["someProerty"] = "someValue";
user.CommitChanges();

Where someProperty and someValue are what is needed to create a mailbox?

Is there documentation on how to do this? Could you tell me what properties need set?

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

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

发布评论

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

评论(3

苍风燃霜 2024-12-17 17:26:08

不,Exchange 邮箱不仅仅是 LDAP 条目的属性。实际上,您需要直接与 Exchange 合作才能完成此任务。如果您使用的是 Exchange 2007+,则可以使用 New-Mailbox PowerShell命令行开关。

在我之前的一份工作中,我在 Web 服务器上安装了 Exchange 管理工具,并自动创建了 PowerShell 运行时环境来执行必要的 commandlet。一旦您执行正确的命令,属性(例如邮箱、电子邮件等)将由 Exchange 添加。

您可以通过创建 运行空间

No, an exchange mailbox is more than just properties on an LDAP entry. You'll actually need to work with Exchange directly to accomplish this. If you are using Exchange 2007+ you can use the New-Mailbox PowerShell commandlet.

In one of my previous jobs, I installed the Exchange Management Tools on my web server and automated creating a PowerShell runtime environment to execute the necessary commandlets. Once you execute the right commands the attributes (such as mailbox, email, etc.) will be added by Exchange.

You can create a PowerShell runtime environment by creating a runspace.

和我恋爱吧 2024-12-17 17:26:08

否 您必须使用 powershell cmdlet 来更改 mailBox 的某些属性。例如,您无法借助 Active Directory Cmdlet 更改别名。我也是新手,这只是我的经验。希望这对您有所帮助。

No You have to use powershell cmdlet to change some properties of mailBox .For Example You can not change Alias Name with the help of Active Directory Cmdlets.I am also new and this is just my experience.hope this will be helpfull to you.

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