Skip to content

Commit c821d9f

Browse files
committed
Added GCC High and DoD information back in
Issue #6536
1 parent db20dbd commit c821d9f

File tree

2 files changed

+28
-5
lines changed

2 files changed

+28
-5
lines changed

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

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ To use the older, less secure remote PowerShell connection instructions that [wi
2525

2626
To use the older Exchange Online Remote PowerShell Module to connect to Security & Compliance Center PowerShell using MFA, see [V1 module - Connect to Security & Compliance Center PowerShell using MFA](v1-module-mfa-connect-to-scc-powershell.md). Note that this older version of the module will eventually be retired.
2727

28-
> [!NOTE]
29-
> Currently, you can't use the EXO V2 module to connect to Security & Compliance Center PowerShell in GCC High or DoD environments. Instead, use the older instructions at [Basic auth - Connect to Security & Compliance Center PowerShell](basic-auth-connect-to-scc-powershell.md) or [V1 module - Connect to Security & Compliance Center PowerShell using MFA](v1-module-mfa-connect-to-scc-powershell.md).
30-
3128
## What do you need to know before you begin?
3229

3330
- The requirements for installing and using the EXO V2 module are described in [Install and maintain the EXO V2 module](exchange-online-powershell-v2.md#install-and-maintain-the-exo-v2-module).
@@ -63,6 +60,17 @@ If you account uses multi-factor authentication, use the steps in this section.
6360
Connect-IPPSSession -UserPrincipalName lukas@fabrikam.de -ConnectionUri https://ps.compliance.protection.outlook.de/PowerShell-LiveID -AzureADAuthorizationEndPointUri https://login.microsoftonline.de/common
6461
```
6562

63+
**This example connects to Security & Compliance Center PowerShell in a Microsoft GCC High organization**.
64+
65+
```powershell
66+
Connect-IPPSSession -UserPrincipalName laura@blueyonderairlines.us -ConnectionUri https://ps.compliance.protection.office365.us/powershell-liveid/ -AzureADAuthorizationEndPointUri https://login.microsoftonline.us/common
67+
```
68+
69+
**This example connects to Security & Compliance Center PowerShell in a Microsoft 365 DoD organization**.
70+
71+
```powershell
72+
Connect-IPPSSession -UserPrincipalName julia@adatum.mil -ConnectionUri https://l5.ps.compliance.protection.office365.us/powershell-liveid/ -AzureADAuthorizationEndPointUri https://login.microsoftonline.us/common
73+
6674
For detailed syntax and parameter information, see [Connect-IPPSSession](https://docs.microsoft.com/powershell/module/exchange/connect-exchangeonline).
6775
6876
> [!NOTE]
@@ -101,7 +109,7 @@ If your account doesn't use multi-factor authentication, use the steps in this s
101109
**This example connects to Security & Compliance Center PowerShell in a Microsoft 365 or Microsoft 365 GCC organization**.
102110

103111
```powershell
104-
Connect-IPPSSession -Credential $UserCredential -ConnectionUri https://ps.compliance.protection.outlook.com/powershell-liveid/
112+
Connect-IPPSSession -Credential $UserCredential
105113
```
106114

107115
**This example connects to Security & Compliance Center PowerShell in an Office 365 Germany organization**.
@@ -110,6 +118,18 @@ If your account doesn't use multi-factor authentication, use the steps in this s
110118
Connect-IPPSSession -Credential $UserCredential -ConnectionUri https://ps.compliance.protection.outlook.de/
111119
```
112120

121+
**This example connects to Security & Compliance Center PowerShell in a Microsoft GCC High organization**.
122+
123+
```powershell
124+
Connect-IPPSSession -Credential $UserCredential -ConnectionUri https://ps.compliance.protection.office365.us/powershell-liveid/
125+
```
126+
127+
**This example connects to Security & Compliance Center PowerShell in a Microsoft 365 DoD organization**.
128+
129+
```powershell
130+
Connect-IPPSSession -Credential $UserCredential -ConnectionUri https://l5.ps.compliance.protection.office365.us/powershell-liveid/
131+
```
132+
113133
For detailed syntax and parameter information, see [Connect-IPPSSession](https://docs.microsoft.com/powershell/module/exchange/connect-exchangeonline).
114134

115135
> [!NOTE]

exchange/exchange-ps/exchange/Connect-IPPSSession.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This cmdlet is available only in the Exchange Online PowerShell V2 module. For m
1818

1919
Use the Connect-IPPSSession cmdlet in the Exchange Online PowerShell V2 module to connect to Security & Compliance Center PowerShell or standalone Exchange Online Protection PowerShell.
2020

21-
**Note**: If your organization is on-premises Exchange, and you have Exchange Enterprise CAL with Services licenses for EOP, use the [Connect-ExchangeOnline](https://docs.microsoft.com/powershell/module/exchange/connect-exchangeonline) cmdlet and the same connection instructions as Exchange Online PowerShell to connect to EOP PowerShell.
21+
**Note**: If your organization is on-premises Exchange, and you have Exchange Enterprise CAL with Services licenses for Exchange Online Protection (EOP), use the [Connect-ExchangeOnline](https://docs.microsoft.com/powershell/module/exchange/connect-exchangeonline) cmdlet the Exchange Online PowerShell instructions to connect to your EOP PowerShell environment.
2222

2323
For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://docs.microsoft.com/powershell/exchange/exchange-cmdlet-syntax).
2424

@@ -68,6 +68,7 @@ The AzureADAuthorizationEndpointUri parameter specifies the Azure AD Authorizati
6868

6969
- Security & Compliance Center PowerShell in Microsoft 365 or Microsoft 365 GCC: Don't use this parameter.
7070
- Security & Compliance Center PowerShell in Office 365 Germany: `https://login.microsoftonline.de/common`
71+
- Security & Compliance Center PowerShell in Microsoft 365 GCC High or Microsoft 365 DoD: `https://login.microsoftonline.us/common`
7172

7273
```yaml
7374
Type: String
@@ -102,6 +103,8 @@ The ConnectionUri parameter specifies the connection endpoint for the remote Pow
102103
103104
- Security & Compliance Center PowerShell in Microsoft 365 or Microsoft 365 GCC: Don't use this parameter. The required value is `https://ps.compliance.protection.outlook.com/powershell-liveid/`, but that's also the default value, so you don't need to use this parameter for these environments.
104105
- Security & Compliance Center PowerShell in Office 365 Germany: `https://ps.compliance.protection.outlook.de/PowerShell-LiveID`
106+
- Security & Compliance Center PowerShell in Microsoft 365 GCC High: `https://ps.compliance.protection.office365.us/powershell-liveid/`
107+
- Security & Compliance Center PowerShell in Microsoft 365 DoD: `https://l5.ps.compliance.protection.office365.us/powershell-liveid/`
105108
- Exchange Online Protection PowerShell in standalone EOP organizations without Exchange Online mailboxes: `https://ps.protection.outlook.com/powershell-liveid/`
106109

107110
```yaml

0 commit comments

Comments
 (0)