You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Prefix parameter specifies an alias to add to nouns in the names of older remote PowerShell cmdlets (cmdlet with nouns that don't already start with EXO). A valid value is a text string without spaces, and you can't use the value EXO (this prefix is reserved for PowerShell V2 module cmdlets).
233
+
234
+
```yaml
235
+
Type: String
236
+
Parameter Sets: (All)
237
+
Aliases:
238
+
Applicable: Exchange Online
239
+
219
240
Required: False
220
241
Position: 5
221
242
Default value: None
222
243
Accept pipeline input: False
223
244
Accept wildcard characters: False
224
245
```
225
246
247
+
### -CommandName
248
+
**Note**: This parameter is available in version 2.0.3 or later.
249
+
250
+
The CommandName parameter specifies the comma separated list of commands to import into the session. Use this parameter for applications or scripts that use a specific set of cmdlets. Reducing the number of cmdlets in the session helps improve performance and reduces the memory footprint of the application or script.
251
+
252
+
```yaml
253
+
Type: String[]
254
+
Parameter Sets: (All)
255
+
Aliases:
256
+
Applicable: Exchange Online
257
+
258
+
Required: False
259
+
Position: 6
260
+
Default value: None
261
+
Accept pipeline input: False
262
+
Accept wildcard characters: False
263
+
```
264
+
265
+
### -FormatTypeName
266
+
The FormatTypeName parameter specifies the output format of the cmdlet.
267
+
268
+
```yaml
269
+
Type: String[]
270
+
Parameter Sets: (All)
271
+
Aliases:
272
+
Applicable: Exchange Online
273
+
274
+
Required: False
275
+
Position: 7
276
+
Default value: None
277
+
Accept pipeline input: False
278
+
Accept wildcard characters: False
279
+
```
280
+
226
281
### -AppId
227
282
**Note**: This parameter is available in version 2.0.3 or later.
228
283
@@ -347,24 +402,6 @@ Accept pipeline input: False
347
402
Accept wildcard characters: False
348
403
```
349
404
350
-
### -CommandName
351
-
**Note**: This parameter is available in version 2.0.3 or later.
352
-
353
-
The CommandName parameter specifies the comma separated list of commands to import into the session. Use this parameter for applications or scripts that use a specific set of cmdlets. Reducing the number of cmdlets in the session helps improve performance and reduces the memory footprint of the application or script.
354
-
355
-
```yaml
356
-
Type: String[]
357
-
Parameter Sets: (All)
358
-
Aliases:
359
-
Applicable: Exchange Online
360
-
361
-
Required: False
362
-
Position: Named
363
-
Default value: None
364
-
Accept pipeline input: False
365
-
Accept wildcard characters: False
366
-
```
367
-
368
405
### -Credential
369
406
The Credential parameter specifies the username and password that's used to run this command. Typically, you use this parameter in scripts or when you need to provide different credentials that have the required permissions. You don't use this parameter for accounts with multi-factor authentication (MFA).
The Credential parameter specifies the username and password that's used to run this command. Typically, you use this parameter in scripts or when you need to provide different credentials that have the required permissions.
410
-
411
-
A value for this parameter requires the Get-Credential cmdlet. To pause this command and receive a prompt for credentials, use the value `(Get-Credential)`. Or, before you run this command, store the credentials in a variable (for example, `$cred = Get-Credential`) and then use the variable name (`$cred`) for this parameter. For more information, see [Get-Credential](https://docs.microsoft.com/powershell/module/microsoft.powershell.security/get-credential).
412
-
413
-
```yaml
414
-
Type: PSCredential
415
-
Parameter Sets: (All)
416
-
Aliases:
417
-
Applicable: Exchange Online
418
-
419
-
Required: False
420
-
Position: Named
421
-
Default value: None
422
-
Accept pipeline input: False
423
-
Accept wildcard characters: False
424
-
```
425
-
426
-
### -FormatTypeName
427
-
The FormatTypeName parameter specifies the output format of the cmdlet.
445
+
### -EnableErrorReporting
446
+
The EnableErrorReporting switch specifies whether to enable error reporting. You don't need to specify a value with this switch.
The Prefix parameter specifies an alias to add to nouns in the names of older remote PowerShell cmdlets (cmdlet with nouns that don't already start with EXO). A valid value is a text string without spaces, and you can't use the value EXO (this prefix is reserved for PowerShell V2 module cmdlets).
531
-
532
-
```yaml
533
-
Type: String
534
-
Parameter Sets: (All)
535
-
Aliases:
536
-
Applicable: Exchange Online
537
-
538
-
Required: False
539
-
Position: Named
540
-
Default value: None
541
-
Accept pipeline input: False
542
-
Accept wildcard characters: False
543
-
```
544
-
545
548
### -ShowBanner
546
549
The ShowBanner switch shows or hides the banner message that's displayed when you run Connect-ExchangeOnline. You don't need to specify a value with this switch.
547
550
548
551
- To show the banner, you don't need to use this switch (the banner is displayed by default).
549
-
550
552
- To hide the banner, use this exact syntax: `-ShowBanner:$false`.
The ShowProgress parameter shows a visual progress bar in the PowerShell client module. The progress bar shows number of objects received and total number of objects requested. Valid values are:
Copy file name to clipboardExpand all lines: exchange/exchange-ps/exchange/Connect-IPPSSession.md
+53Lines changed: 53 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,9 @@ Connect-IPPSSession
29
29
[[-AzureADAuthorizationEndpointUri] <String>]
30
30
[[-DelegatedOrganization] <String>]
31
31
[[-PSSessionOption] <PSSessionOption>]
32
+
[[-Prefix] <String>]
33
+
[[-CommandName] <String[]>]
34
+
[[-FormatTypeName] <String[]>]
32
35
[-BypassMailboxAnchoring]
33
36
[-Credential <PSCredential>]
34
37
[-UserPrincipalName <String>]
@@ -139,6 +142,56 @@ Accept pipeline input: False
139
142
Accept wildcard characters: False
140
143
```
141
144
145
+
### -Prefix
146
+
The Prefix parameter specifies an alias to add to nouns in the names of older remote PowerShell cmdlets (cmdlet with nouns that don't already start with EXO). A valid value is a text string without spaces, and you can't use the value EXO (this prefix is reserved for PowerShell V2 module cmdlets).
147
+
148
+
```yaml
149
+
Type: String
150
+
Parameter Sets: (All)
151
+
Aliases:
152
+
Applicable: Exchange Online
153
+
154
+
Required: False
155
+
Position: 4
156
+
Default value: None
157
+
Accept pipeline input: False
158
+
Accept wildcard characters: False
159
+
```
160
+
161
+
### -CommandName
162
+
**Note**: This parameter is available in version 2.0.3 or later.
163
+
164
+
The CommandName parameter specifies the comma separated list of commands to import into the session. Use this parameter for applications or scripts that use a specific set of cmdlets. Reducing the number of cmdlets in the session helps improve performance and reduces the memory footprint of the application or script.
165
+
166
+
```yaml
167
+
Type: String[]
168
+
Parameter Sets: (All)
169
+
Aliases:
170
+
Applicable: Exchange Online
171
+
172
+
Required: False
173
+
Position: 5
174
+
Default value: None
175
+
Accept pipeline input: False
176
+
Accept wildcard characters: False
177
+
```
178
+
179
+
### -FormatTypeName
180
+
The FormatTypeName parameter specifies the output format of the cmdlet.
181
+
182
+
```yaml
183
+
Type: String[]
184
+
Parameter Sets: (All)
185
+
Aliases:
186
+
Applicable: Exchange Online
187
+
188
+
Required: False
189
+
Position: 6
190
+
Default value: None
191
+
Accept pipeline input: False
192
+
Accept wildcard characters: False
193
+
```
194
+
142
195
### -BypassMailboxAnchoring
143
196
The BypassMailboxAnchoring switch bypasses the use of the mailbox anchoring hint. You don't need to specify a value with this switch.
0 commit comments