Change Sharepoint 2013 Passphrase Key using Powershel
Get-Help Set-SPPassPhrase -Detailed
$passphrase = ConvertTo-SecureString -String "MyPassPhraseKey" -asPlainText -Force
Set-SPPassPhrase -PassPhrase $passphrase -Confirm
After that u enter the same pass phrase key to confirm
Hope this will helps you!!!!!!!!!!!!!!!!!!
$passphrase = ConvertTo-SecureString -String "MyPassPhraseKey" -asPlainText -Force
Set-SPPassPhrase -PassPhrase $passphrase -Confirm
After that u enter the same pass phrase key to confirm
Hope this will helps you!!!!!!!!!!!!!!!!!!
Comments
Post a Comment