如何修改SharePoint 2010的passphrase

安装SharePoint 2010的时候, 你会被要求输入Passphrase. PassPhrase类似一种密码, 以后在向服务器场添加服务器的时候, 会被要求输入这个passphrase的. 还有, 如果你让SharePoint来处理服务账号的密码, 允许SharePoint修改密码为健壮的, 连你也不知道的密码的时候, 这个passphrase就派上用场了.

如果passphrase丢失或忘记了, 没有办法找回.

如果要修改, 可以使用下面的命令:

  C:\PS> $passphrase = ConvertTo-SecureString -asPlainText -Force
  C:\PS> Set-SPPassPhrase -PassPhrase $passphrase -Confirm

第一行命令会要求你输入一个密码, 然后把这个密码以安全的模式群出在$passphrase变量中.

第二行命令会要求你输入旧的passphrase, 然后让你确认你是否的确要这样做.

image_thumb[1]

参考资料:

SharePoint 2010: Change the passphrase

http://techtrainingnotes.blogspot.com/2009/12/sharepoint-2010-change-passphrase.html

原文地址:https://www.cnblogs.com/awpatp/p/1781942.html