Skip to content

Commit f813ac8

Browse files
committed
update
1 parent 4f8d95b commit f813ac8

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,13 @@ 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_to_manage>
118-
Update-MgDomainFederationConfiguration -DomainId <domain_to_manage> -InternalDomainFederationId $tdo.Id -PromptLoginBehavior <translateToFreshPasswordAuthentication|nativeSupport|disabled>
117+
$tdo= Get-MgDomainFederationConfiguration -DomainID <domain_id>
118+
Update-MgDomainFederationConfiguration -DomainId <domain_id> -InternalDomainFederationId $tdo.Id -PromptLoginBehavior <translateToFreshPasswordAuthentication|nativeSupport|disabled>
119119
Disconnect-MgGraph
120120
```
121121

122122
> [!NOTE]
123-
> \<domain_to_manage> is a placeholder for your domain's name. For example, contoso.com.
123+
> \<domain_id> is a placeholder for your domain's name. For example, contoso.com.
124124
125125
The values for the PromptLoginBehavior parameter are:
126126

@@ -217,11 +217,11 @@ If the application that you want to access is Microsoft Online Services for Offi
217217

218218
```powershell
219219
Connect-MgGraph -scopes Domain.ReadWrite.All, Directory.ReadWrite.All
220-
Get-MgDomainFederationConfiguration -DomainId <domain_to_manage> | FL *
220+
Get-MgDomainFederationConfiguration -DomainId <domain_id> | FL *
221221
```
222222

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

0 commit comments

Comments
 (0)