Skip to content

Commit 9f43907

Browse files
authored
resolve merge conflict to align with -pr master version
1 parent 3fb7e16 commit 9f43907

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

articles/active-directory/authentication/howto-authentication-passwordless-security-key-on-premises.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,13 +145,16 @@ Run the following steps in each domain and forest in your organization that cont
145145
# Kerberos Server object will be created in this Active Directory domain.
146146
$domain = "contoso.corp.com"
147147
148-
# Enter an Azure Active Directory global administrator username and password.
149-
$cloudCred = Get-Credential
148+
# Enter a UPN of an Azure Active Directory global administrator
149+
$userPrincipalName = "[email protected]"
150+
151+
# Enter a domain administrator username and password.
152+
$domainCred = Get-Credential
150153
151154
# Create the new Azure AD Kerberos Server object in Active Directory
152155
# and then publish it to Azure Active Directory.
153-
# Use the current windows login credential to access the on-prem AD.
154-
Set-AzureADKerberosServer -Domain $domain -CloudCredential $cloudCred
156+
# Open an interactive sign-in prompt with given username to access the Azure AD.
157+
Set-AzureADKerberosServer -Domain $domain -UserPrincipalName $userPrincipalName -DomainCredential $domainCred
155158
```
156159

157160
### View and verify the Azure AD Kerberos Server

0 commit comments

Comments
 (0)