Skip to content

Commit 0c3f7ce

Browse files
authored
Merge pull request #86663 from rmuralidhar/patch-1
Pre-requisite clarification and Message addition
2 parents 70fbdeb + 126d91c commit 0c3f7ce

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ You must also meet the following system requirements:
5353
- [Windows Server 2016](https://support.microsoft.com/help/4534307/windows-10-update-kb4534307)
5454
- [Windows Server 2019](https://support.microsoft.com/help/4534321/windows-10-update-kb4534321)
5555

56+
- Have the credentials required to complete the steps in the scenario:
57+
- An Active Directory user who is a member of the Domain Admins group for a domain and a member of the Enterprise Admins group for a forest. Referred to as **$domainCred**.
58+
- An Azure Active Directory user who is a member of the Global Administrators role. Referred to as **$cloudCred**.
59+
5660
### Supported scenarios
5761

5862
The scenario in this article supports SSO in both of the following instances:
@@ -108,10 +112,10 @@ Run the following steps in each domain and forest in your organization that cont
108112
$domain = "contoso.corp.com"
109113
110114
# Enter an Azure Active Directory global administrator username and password.
111-
$cloudCred = Get-Credential
115+
$cloudCred = Get-Credential -Message 'An Active Directory user who is a member of the Domain Admins group for a domain and a member of the Enterprise Admins group for a forest.'
112116
113117
# Enter a domain administrator username and password.
114-
$domainCred = Get-Credential
118+
$domainCred = Get-Credential -Message 'An Active Directory user who is a member of the Domain Admins group.'
115119
116120
# Create the new Azure AD Kerberos Server object in Active Directory
117121
# and then publish it to Azure Active Directory.

0 commit comments

Comments
 (0)