Powershell needs a comma here
This commit is contained in:
StefanSchoof 2019-08-12 15:55:47 +02:00 коммит произвёл Isaiah Williams
Родитель d84faf9fa2
Коммит 19d162a5ae
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -44,7 +44,7 @@ The following example demonstrates how to connect using a service principal. It
# Service principal login
$appId = '<Web-AAD-AppId-for-PartnerCenter>'
$appSecret = '<Web-AAD-AppSecret>' | ConvertTo-SecureString -AsPlainText -Force
$credential = New-Object System.Management.Automation.PSCredential $appId $appSecret
$credential = New-Object System.Management.Automation.PSCredential $appId, $appSecret
Connect-PartnerCenter -Credential $credential -TenantId '<TenantId>'
```