Skip to content

Commit 4f8d95b

Browse files
committed
add notes.
1 parent 5c26f96 commit 4f8d95b

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

support/windows-server/active-directory/troubleshoot-ad-fs-sso-issue.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,14 @@ If the application is Microsoft Online Services, what you experience may be cont
114114

115115
```powershell
116116
Connect-MgGraph -scopes Domain.ReadWrite.All, Directory.ReadWrite.All
117-
$tdo= Get-MgDomainFederationConfiguration -DomainID <domain_id>
118-
Update-MgDomainFederationConfiguration -DomainId <domain_id> -InternalDomainFederationId $tdo.Id -PromptLoginBehavior <translateToFreshPasswordAuthentication|nativeSupport|disabled>
117+
$tdo= Get-MgDomainFederationConfiguration -DomainID <domain_to_manage>
118+
Update-MgDomainFederationConfiguration -DomainId <domain_to_manage> -InternalDomainFederationId $tdo.Id -PromptLoginBehavior <translateToFreshPasswordAuthentication|nativeSupport|disabled>
119119
Disconnect-MgGraph
120120
```
121121

122+
> [!NOTE]
123+
> \<domain_to_manage> is a placeholder for your domain's name. For example, contoso.com.
124+
122125
The values for the PromptLoginBehavior parameter are:
123126

124127
1. **translateToFreshPasswordAuth**: Microsoft Entra ID sends wauth and wfresh to AD FS instead of prompt=login. This leads to an authentication request to use forms-based authentication.
@@ -214,9 +217,12 @@ If the application that you want to access is Microsoft Online Services for Offi
214217

215218
```powershell
216219
Connect-MgGraph -scopes Domain.ReadWrite.All, Directory.ReadWrite.All
217-
Get-MgDomainFederationConfiguration -DomainId <domain_id> | FL *
220+
Get-MgDomainFederationConfiguration -DomainId <domain_to_manage> | FL *
218221
```
219222

223+
> [!NOTE]
224+
> \<domain_to_manage> is a placeholder for your domain's name. For example, contoso.com.
225+
220226
2. If the SupportsMFA setting is FALSE, set it to TRUE by running the following command:
221227

222228
```powershell

0 commit comments

Comments
 (0)