篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 连接到SDL Cloud中的SDL Web 8相关的知识,希望对你有一定的参考价值。
# December 2017: the switches "-ConnectionType Basic-SSL -CredentialType Basic" are new in the develop branch of the Tridion PowerShell modules
# install the develop version with iwr "https://raw.githubusercontent.com/pkjaer/tridion-powershell-modules/develop/CoreService/Installation/Install.ps1" | iex
$username = 'domain\user'
$password = 'password' | ConvertTo-SecureString -asPlainText -Force
$credential = New-Object System.Management.Automation.PSCredential($username, $password)
Set-TridionCoreServiceSettings -HostName cm-web-gocompare-test.tridion.sdlproducts.com -ConnectionType Basic-SSL -CredentialType Basic -Credential $credential
Get-TridionUser
以上是关于powershell 连接到SDL Cloud中的SDL Web 8的主要内容,如果未能解决你的问题,请参考以下文章