File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
articles/active-directory/cloud-sync Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -48,13 +48,13 @@ The Windows server must have TLS 1.2 enabled before you install the Azure AD Con
48
48
```
49
49
Import-Module "C:\Program Files\Microsoft Azure AD Connect Provisioning Agent\Microsoft.CloudSync.PowerShell.dll"
50
50
```
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.
52
52
```
53
- $globalAdminPassword = ConvertTo-SecureString -String "Global admin password" -AsPlainText -Force
53
+ $hybridAdminPassword = ConvertTo-SecureString -String "Hybrid identity admin password" -AsPlainText -Force
54
54
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 )
56
56
57
- Connect-AADCloudSyncAzureAD -Credential $globalAdminCreds
57
+ Connect-AADCloudSyncAzureAD -Credential $hybridAdminCreds
58
58
```
59
59
11. Add the gMSA account, and provide credentials of the domain admin to create the default gMSA account.
60
60
```
You can’t perform that action at this time.
0 commit comments