Skip to content

Commit 5ee6242

Browse files
committed
Update connect-to-scc-powershell.md
Added AzureAdAuthorizationEndpointUri param to GCC High and DoD examples per email request.
1 parent 3f5a68f commit 5ee6242

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

exchange/docs-conceptual/connect-to-scc-powershell.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,36 +47,36 @@ If your account uses multi-factor authentication, use the steps in this section.
4747
2. The last command that you need to run uses the following syntax:
4848

4949
```powershell
50-
Connect-IPPSSession -UserPrincipalName <UPN> [-ConnectionUri <URL>] [-PSSessionOption $ProxyOptions]
50+
Connect-IPPSSession -UserPrincipalName <UPN> [-ConnectionUri <URL>] [-AzureADAuthorizationEndpointUri <URL>] [-PSSessionOption $ProxyOptions]
5151
```
5252

5353
- _\<UPN\>_ is your account in user principal name format (for example, `navin@contoso.com`).
54-
- The required _ConnectionUri_ value depends on the nature of your Microsoft 365 organization. For more information, see the parameter description in [Connect-IPPSSession](/powershell/module/exchange/connect-ippssession).
55-
- When you use the _UserPrincipalName_ parameter, you don't need to use the _AzureADAuthorizationEndpointUri_ parameter in environments that would otherwise require it.
54+
- The required _ConnectionUri_ value depends on the nature of your Microsoft 365 organization. For more information, see the following examples or the parameter description in [Connect-IPPSSession](/powershell/module/exchange/connect-ippssession).
55+
- The _AzureADAuthorizationEndpointUri_ parameter is required in some environments and not in others. For more information, see the following examples or the parameter description in [Connect-IPPSSession](/powershell/module/exchange/connect-ippssession).
5656
- If you're behind a proxy server, run this command first: `$ProxyOptions = New-PSSessionOption -ProxyAccessType <Value>`, where \<Value\> is `IEConfig`, `WinHttpConfig`, or `AutoDetect`. Then, use the _PSSessionOption_ parameter with the value `$ProxyOptions`. For more information, see [New-PSSessionOption](/powershell/module/microsoft.powershell.core/new-pssessionoption).
5757

58-
**This example connects to Security & Compliance Center PowerShell in a Microsoft 365 or Microsoft 365 GCC organization**.
58+
**This example connects to Security & Compliance Center PowerShell in a Microsoft 365 or Microsoft 365 GCC organization**:
5959

6060
```powershell
6161
Connect-IPPSSession -UserPrincipalName navin@contoso.com
6262
```
6363

64-
**This example connects to Security & Compliance Center PowerShell in an Office 365 operated by 21Vianet organization**.
64+
**This example connects to Security & Compliance Center PowerShell in an Office 365 operated by 21Vianet organization**:
6565

6666
```powershell
6767
Connect-IPPSSession -UserPrincipalName li@fabrikam.cn -ConnectionUri https://ps.compliance.protection.partner.outlook.cn/powershell-liveid
6868
```
6969

70-
**This example connects to Security & Compliance Center PowerShell in a Microsoft GCC High organization**.
70+
**This example connects to Security & Compliance Center PowerShell in a Microsoft GCC High organization**:
7171

7272
```powershell
73-
Connect-IPPSSession -UserPrincipalName chris@govt.us -ConnectionUri https://ps.compliance.protection.office365.us/powershell-liveid/
73+
Connect-IPPSSession -UserPrincipalName chris@govt.us -ConnectionUri https://ps.compliance.protection.office365.us/powershell-liveid/ -AzureADAuthorizationEndpointUri https://login.microsoftonline.us/common
7474
```
7575

76-
**This example connects to Security & Compliance Center PowerShell in a Microsoft 365 DoD organization**.
76+
**This example connects to Security & Compliance Center PowerShell in a Microsoft 365 DoD organization**:
7777

7878
```powershell
79-
Connect-IPPSSession -UserPrincipalName michelle@govt.mil -ConnectionUri https://l5.ps.compliance.protection.office365.us/powershell-liveid/
79+
Connect-IPPSSession -UserPrincipalName michelle@govt.mil -ConnectionUri https://l5.ps.compliance.protection.office365.us/powershell-liveid/ -AzureADAuthorizationEndpointUri https://login.microsoftonline.us/common
8080
```
8181

8282
For detailed syntax and parameter information, see [Connect-IPPSSession](/powershell/module/exchange/connect-ippssession).
@@ -119,7 +119,8 @@ If your account doesn't use multi-factor authentication, use the steps in this s
119119
Connect-IPPSSession [-Credential $UserCredential] [-ConnectionUri <URL>] [-AzureADAuthorizationEndpointUri <URL>] [-PSSessionOption $ProxyOptions]
120120
```
121121

122-
- The required _ConnectionUri_ and _AzureADAuthorizationEndPointUrl_ values depend on the nature of your Microsoft 365 organization. For more information, see the parameter descriptions in [Connect-IPPSSession](/powershell/module/exchange/connect-ippssession).
122+
- The required _ConnectionUri_ and _AzureADAuthorizationEndPointUrl_ values depend on the nature of your Microsoft 365 organization. For more information, see the following examples or the parameter description in [Connect-IPPSSession](/powershell/module/exchange/connect-ippssession).
123+
- The _AzureADAuthorizationEndpointUri_ parameter is required in some environments and not in others. For more information, see the following examples or the parameter description in [Connect-IPPSSession](/powershell/module/exchange/connect-ippssession).
123124
- If you're behind a proxy server, store the output of the [New-PSSessionOption](/powershell/module/microsoft.powershell.core/new-pssessionoption) cmdlet in a variable (for example, `$ProxyOptions = New-PSSessionOption -ProxyAccessType <Value> [-ProxyAuthentication <Value>] [-ProxyCredential <Value>]`). Then, use the variable (`$ProxyOptions`) as the value for the _PSSessionOption_ parameter.
124125

125126
**This example connects to Security & Compliance Center PowerShell in a Microsoft 365 or Microsoft 365 GCC organization**.

0 commit comments

Comments
 (0)