@@ -35,7 +35,7 @@ To use the older Exchange Online Remote PowerShell Module to connect to Security
35
35
36
36
| Microsoft 365 offering| _ ConnectionUri_ value| _ AzureADAuthorizationEndPointUri_ value|
37
37
| ---| ---| ---|
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|
39
39
| Microsoft 365 GCC High| ` https://ps.compliance.protection.office365.us/powershell-liveid/ ` | ` https://login.microsoftonline.us/common ` |
40
40
| Microsoft 365 DoD| ` https://l5.ps.compliance.protection.office365.us/powershell-liveid/ ` | ` https://login.microsoftonline.us/common ` |
41
41
| 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.
54
54
2 . The command that you need to run uses the following syntax:
55
55
56
56
``` powershell
57
- Connect-IPPSSession -UserPrincipalName <UPN> -ShowProgress $true [-ConnectionUri <URL>] [-AzureADAuthorizationEndPointUri <URL>]
57
+ Connect-IPPSSession -UserPrincipalName <UPN> [-ConnectionUri <URL>] [-AzureADAuthorizationEndPointUri <URL>]
58
58
```
59
59
60
60
- \< 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.
63
63
** This example connects to Security & Compliance Center PowerShell in a Microsoft 365 or Microsoft 365 GCC organization** .
64
64
65
65
``` 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/
67
67
```
68
68
69
69
** This example connects to Security & Compliance Center PowerShell in an Office 365 Germany organization** .
70
70
71
71
``` 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
73
73
```
74
74
75
75
** This example connects to Security & Compliance Center PowerShell in a Microsoft GCC High organization** .
76
76
77
77
``` 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
79
79
```
80
80
81
81
** This example connects to Security & Compliance Center PowerShell in a Microsoft 365 DoD organization** .
82
82
83
83
``` 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
85
85
```
86
86
87
87
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
114
114
3 . The command that you need to run uses the following syntax:
115
115
116
116
``` powershell
117
- Connect-IPPSSession -Credential $UserCredential -ShowProgress $true - ConnectionUri <URL>
117
+ Connect-IPPSSession -Credential $UserCredential -ConnectionUri <URL>
118
118
```
119
119
120
120
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.
121
121
122
122
** This example connects to Security & Compliance Center PowerShell in a Microsoft 365 or Microsoft 365 GCC organization** .
123
123
124
124
``` 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/
126
126
```
127
127
128
128
** This example connects to Security & Compliance Center PowerShell in an Office 365 Germany organization** .
129
129
130
130
``` 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/
132
132
```
133
133
134
134
** This example connects to Security & Compliance Center PowerShell in a Microsoft GCC High organization** .
135
135
136
136
``` 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/
138
138
```
139
139
140
140
** This example connects to Security & Compliance Center PowerShell in a Microsoft 365 DoD organization** .
141
141
142
142
``` 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/
144
144
```
145
145
146
146
For detailed syntax and parameter information, see [ Connect-IPPSSession] ( https://docs.microsoft.com/powershell/module/exchange/connect-exchangeonline ) .
0 commit comments