Skip to content

Commit c0245a8

Browse files
committed
Removed -ShowProgress from SCC/EOP Connect-IPPSession commands
1 parent 68024f7 commit c0245a8

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

exchange/docs-conceptual/connect-to-exchange-online-protection-powershell.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ If you account uses multi-factor authentication, use the steps in this section.
5656
2. The command that you need to run uses the following syntax:
5757

5858
```powershell
59-
<Connect-IPPSSession | Connect-ExchangeOnline> -UserPrincipalName <UPN> -ShowProgress $true [-ConnectionUri <URL>] [-AzureADAuthorizationEndPointUri <URL>]
59+
<Connect-IPPSSession | Connect-ExchangeOnline> -UserPrincipalName <UPN> [-ConnectionUri <URL>] [-AzureADAuthorizationEndPointUri <URL>]
6060
```
6161

6262
- _\<UPN\>_ is your account in user principal name format (for example, `[email protected]`).
@@ -65,13 +65,13 @@ If you account uses multi-factor authentication, use the steps in this section.
6565
**This example connects to Exchange Online Protection PowerShell in a Microsoft 365 organization**:
6666

6767
```powershell
68-
Connect-IPPSSession -UserPrincipalName [email protected] -ShowProgress $true -ConnectionUri https://ps.protection.outlook.com/powershell-liveid/
68+
Connect-IPPSSession -UserPrincipalName [email protected] -ConnectionUri https://ps.protection.outlook.com/powershell-liveid/
6969
```
7070

7171
**This example connects to Exchange Online Protection PowerShell in an Office 365 Germany organization**:
7272

7373
```powershell
74-
Connect-IPPSSession -UserPrincipalName [email protected] -ShowProgress $true -ConnectionUri https://ps.protection.outlook.de/powershell-liveid/ -AzureADAuthorizationEndPointUri https://login.microsoftonline.de/common
74+
Connect-IPPSSession -UserPrincipalName [email protected] -ConnectionUri https://ps.protection.outlook.de/powershell-liveid/ -AzureADAuthorizationEndPointUri https://login.microsoftonline.de/common
7575
```
7676

7777
**This example connects to Exchange Online Protection PowerShell in an Exchange Enterprise CAL with Services organization**:
@@ -110,21 +110,21 @@ If your account doesn't use multi-factor authentication, use the steps in this s
110110
3. The command that you need to run uses the following syntax:
111111

112112
```powershell
113-
<Connect-IPPSSession | Connect-ExchangeOnline> -Credential $UserCredential -ShowProgress $true -ConnectionUri <URL>
113+
<Connect-IPPSSession | Connect-ExchangeOnline> -Credential $UserCredential -ConnectionUri <URL>
114114
```
115115

116116
The required cmdlet and _ConnectionUri_ parameter values are described in the table in the [What do you need to know before you begin?](#what-do-you-need-to-know-before-you-begin) section.
117117

118118
**This example connects to Exchange Online Protection PowerShell in a Microsoft 365 organization**:
119119

120120
```powershell
121-
Connect-IPPSSession -Credential $UserCredential -ShowProgress $true -ConnectionUri https://ps.protection.outlook.com/powershell-liveid/
121+
Connect-IPPSSession -Credential $UserCredential -ConnectionUri https://ps.protection.outlook.com/powershell-liveid/
122122
```
123123

124124
**This example connects to Exchange Online Protection PowerShell in an Office 365 Germany organization**:
125125

126126
```powershell
127-
Connect-IPPSSession -Credential $UserCredential -ShowProgress $true -ConnectionUri https://ps.protection.outlook.de/powershell-liveid/
127+
Connect-IPPSSession -Credential $UserCredential -ConnectionUri https://ps.protection.outlook.de/powershell-liveid/
128128
```
129129

130130
**This example connects to Exchange Online Protection PowerShell in an Exchange Enterprise CAL with Services organization**:

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

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ To use the older Exchange Online Remote PowerShell Module to connect to Security
3535

3636
|Microsoft 365 offering|_ConnectionUri_ value|_AzureADAuthorizationEndPointUri_ value|
3737
|---|---|---|
38-
|Microsoft 365 or Microsoft 365 GCC|`https://ps.compliance.protection.outlook.com/powershell-liveid/`|Not used|
38+
|Microsoft 365 or Microsoft 365 GCC|Not used|Not used|
3939
|Microsoft 365 GCC High|`https://ps.compliance.protection.office365.us/powershell-liveid/`|`https://login.microsoftonline.us/common`|
4040
|Microsoft 365 DoD|`https://l5.ps.compliance.protection.office365.us/powershell-liveid/`|`https://login.microsoftonline.us/common`|
4141
|Office 365 Germany|`https://ps.compliance.protection.outlook.de/PowerShell-LiveID`|`https://login.microsoftonline.de/common`|
@@ -54,7 +54,7 @@ If you account uses multi-factor authentication, use the steps in this section.
5454
2. The command that you need to run uses the following syntax:
5555

5656
```powershell
57-
Connect-IPPSSession -UserPrincipalName <UPN> -ShowProgress $true [-ConnectionUri <URL>] [-AzureADAuthorizationEndPointUri <URL>]
57+
Connect-IPPSSession -UserPrincipalName <UPN> [-ConnectionUri <URL>] [-AzureADAuthorizationEndPointUri <URL>]
5858
```
5959

6060
- \<UPN\> is your account in user principal name format (for example, `[email protected]`).
@@ -63,25 +63,25 @@ If you account uses multi-factor authentication, use the steps in this section.
6363
**This example connects to Security & Compliance Center PowerShell in a Microsoft 365 or Microsoft 365 GCC organization**.
6464

6565
```powershell
66-
Connect-IPPSSession -UserPrincipalName [email protected] -ShowProgress $true -ConnectionUri https://ps.compliance.protection.outlook.com/powershell-liveid/
66+
Connect-IPPSSession -UserPrincipalName [email protected] -ConnectionUri https://ps.compliance.protection.outlook.com/powershell-liveid/
6767
```
6868

6969
**This example connects to Security & Compliance Center PowerShell in an Office 365 Germany organization**.
7070

7171
```powershell
72-
Connect-IPPSSession -UserPrincipalName [email protected] -ShowProgress $true -ConnectionUri https://ps.compliance.protection.outlook.de/PowerShell-LiveID -AzureADAuthorizationEndPointUri https://login.microsoftonline.de/common
72+
Connect-IPPSSession -UserPrincipalName [email protected] -ConnectionUri https://ps.compliance.protection.outlook.de/PowerShell-LiveID -AzureADAuthorizationEndPointUri https://login.microsoftonline.de/common
7373
```
7474

7575
**This example connects to Security & Compliance Center PowerShell in a Microsoft GCC High organization**.
7676

7777
```powershell
78-
Connect-IPPSSession -UserPrincipalName [email protected] -ShowProgress $true -ConnectionUri https://l5.ps.compliance.protection.office365.us/powershell-liveid/ -AzureADAuthorizationEndPointUri https://login.microsoftonline.us/common
78+
Connect-IPPSSession -UserPrincipalName [email protected] -ConnectionUri https://l5.ps.compliance.protection.office365.us/powershell-liveid/ -AzureADAuthorizationEndPointUri https://login.microsoftonline.us/common
7979
```
8080

8181
**This example connects to Security & Compliance Center PowerShell in a Microsoft 365 DoD organization**.
8282

8383
```powershell
84-
Connect-IPPSSession -UserPrincipalName [email protected] -ShowProgress $true -ConnectionUri https://l5.ps.compliance.protection.office365.us/powershell-liveid/ -AzureADAuthorizationEndPointUri https://login.microsoftonline.us/common
84+
Connect-IPPSSession -UserPrincipalName [email protected] -ConnectionUri https://l5.ps.compliance.protection.office365.us/powershell-liveid/ -AzureADAuthorizationEndPointUri https://login.microsoftonline.us/common
8585
```
8686

8787
For detailed syntax and parameter information, see [Connect-IPPSSession](https://docs.microsoft.com/powershell/module/exchange/connect-exchangeonline).
@@ -114,33 +114,33 @@ If your account doesn't use multi-factor authentication, use the steps in this s
114114
3. The command that you need to run uses the following syntax:
115115

116116
```powershell
117-
Connect-IPPSSession -Credential $UserCredential -ShowProgress $true -ConnectionUri <URL>
117+
Connect-IPPSSession -Credential $UserCredential -ConnectionUri <URL>
118118
```
119119

120120
The _ConnectionUri_ values are described in the table in the [What do you need to know before you begin?](#what-do-you-need-to-know-before-you-begin) section.
121121

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

124124
```powershell
125-
Connect-IPPSSession -Credential $UserCredential -ShowProgress $true -ConnectionUri https://ps.compliance.protection.outlook.com/powershell-liveid/
125+
Connect-IPPSSession -Credential $UserCredential -ConnectionUri https://ps.compliance.protection.outlook.com/powershell-liveid/
126126
```
127127

128128
**This example connects to Security & Compliance Center PowerShell in an Office 365 Germany organization**.
129129

130130
```powershell
131-
Connect-IPPSSession -Credential $UserCredential -ShowProgress $true -ConnectionUri https://ps.compliance.protection.outlook.de/
131+
Connect-IPPSSession -Credential $UserCredential -ConnectionUri https://ps.compliance.protection.outlook.de/
132132
```
133133

134134
**This example connects to Security & Compliance Center PowerShell in a Microsoft GCC High organization**.
135135

136136
```powershell
137-
Connect-IPPSSession -Credential $UserCredential -ShowProgress $true -ConnectionUri https://l5.ps.compliance.protection.office365.us/powershell-liveid/
137+
Connect-IPPSSession -Credential $UserCredential -ConnectionUri https://l5.ps.compliance.protection.office365.us/powershell-liveid/
138138
```
139139

140140
**This example connects to Security & Compliance Center PowerShell in a Microsoft 365 DoD organization**.
141141

142142
```powershell
143-
Connect-IPPSSession -Credential $UserCredential -ShowProgress $true -ConnectionUri https://l5.ps.compliance.protection.office365.us/powershell-liveid/
143+
Connect-IPPSSession -Credential $UserCredential -ConnectionUri https://l5.ps.compliance.protection.office365.us/powershell-liveid/
144144
```
145145

146146
For detailed syntax and parameter information, see [Connect-IPPSSession](https://docs.microsoft.com/powershell/module/exchange/connect-exchangeonline).

0 commit comments

Comments
 (0)