2010电子邮件密码重置

2010电子邮件密码重置

本文介绍了Microsoft Exchange Server 2010电子邮件密码重置。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想更改/重置Exchange Server 2010 来自我的网络应用程序的电子邮件密码。请帮助。

I want to change/reset Exchange Server 2010  E-mail password from my web application.Please help.

推荐答案

试试powershell:  Set-Mailbox [email protected] -Password(ConvertTo-SecureString -String'change_password'-AsPlainText -Force)-ResetPasswordOnNextLogon

Try the powershell: Set-Mailbox [email protected] -Password (ConvertTo-SecureString -String 'change_password' -AsPlainText -Force) -ResetPasswordOnNextLogon


注意:替换"[email protected]"使用基于Exchange的电子邮件地址。替换"change_password"使用新密码


这篇关于Microsoft Exchange Server 2010电子邮件密码重置。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-28 04:28