Skip to content

Commit 0b4083c

Browse files
committed
updating
1 parent 6f407ab commit 0b4083c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/active-directory/cloud-sync/how-to-install-pshell.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ The Windows server must have TLS 1.2 enabled before you install the Azure AD Con
4848
```
4949
Import-Module "C:\Program Files\Microsoft Azure AD Connect Provisioning Agent\Microsoft.CloudSync.PowerShell.dll"
5050
```
51-
10. Connect to Azure AD by using global administrator credentials. You can customize this section to fetch a password from a secure store.
51+
10. Connect to Azure AD by using an account with the hybrid identity role. You can customize this section to fetch a password from a secure store.
5252
```
53-
$globalAdminPassword = ConvertTo-SecureString -String "Global admin password" -AsPlainText -Force
53+
$hybridAdminPassword = ConvertTo-SecureString -String "Hybrid identity admin password" -AsPlainText -Force
5454
55-
$globalAdminCreds = New-Object System.Management.Automation.PSCredential -ArgumentList ("GlobalAdmin@contoso.onmicrosoft.com", $globalAdminPassword)
55+
$hybridAdminCreds = New-Object System.Management.Automation.PSCredential -ArgumentList ("HybridIDAdmin@contoso.onmicrosoft.com", $hybridAdminPassword)
5656
57-
Connect-AADCloudSyncAzureAD -Credential $globalAdminCreds
57+
Connect-AADCloudSyncAzureAD -Credential $hybridAdminCreds
5858
```
5959
11. Add the gMSA account, and provide credentials of the domain admin to create the default gMSA account.
6060
```

0 commit comments

Comments
 (0)