Skip to content

Commit 3a80b2f

Browse files
authored
Merge branch 'master' into patch-333
2 parents 9438e25 + 8e70db6 commit 3a80b2f

40 files changed

+1207
-93
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ If your account uses multi-factor authentication, use the steps in this section.
6666
- When you use the _ExchangeEnvironmentName_ parameter, you don't need use the _ConnectionUri_ or _AzureADAuthorizationEndPointUrl_ parameters. For more information, see the parameter descriptions in [Connect-ExchangeOnline](/powershell/module/exchange/connect-exchangeonline).
6767
- The _DelegatedOrganization_ parameter specifies the customer organization that you want to manage as an authorized Microsoft Partner. For more information, see [Partners](/office365/servicedescriptions/office-365-platform-service-description/partners).
6868
- 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).
69-
- The progress bar is now shown by default, so `-ShowProgress $true` is no longer required. To hide the progress bar, use this exact syntax: `-ShowProgress:$false`.
7069

7170
**This example connects to Exchange Online PowerShell in a Microsoft 365 or Microsoft 365 GCC organization**:
7271

@@ -141,7 +140,6 @@ If your account doesn't use multi-factor authentication, use the steps in this s
141140
- When you use the _ExchangeEnvironmentName_ parameter, you don't need use the _ConnectionUri_ or _AzureADAuthorizationEndPointUrl_ parameters. For more information, see the parameter descriptions in [Connect-ExchangeOnline](/powershell/module/exchange/connect-exchangeonline).
142141
- The _DelegatedOrganization_ parameter specifies the customer organization that you want to manage as an authorized Microsoft Partner. For more information, see [Partners](/office365/servicedescriptions/office-365-platform-service-description/partners).
143142
- 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.
144-
- The progress bar is now shown by default, so `-ShowProgress $true` is no longer required. To hide the progress bar, use this exact syntax: `-ShowProgress:$false`.
145143

146144
**Connect to Exchange Online PowerShell in a Microsoft 365 or Microsoft 365 GCC organization**:
147145

exchange/exchange-ps/exchange/Connect-ExchangeOnline.md

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ Connect-ExchangeOnline
4949
[-PageSize <UInt32>]
5050
[-ShowBanner]
5151
[-ShowProgress <Boolean>]
52-
[-SkipImportSession]
5352
[-TrackPerformance <Boolean>]
5453
[-UseMultithreading <Boolean>]
5554
[-UserPrincipalName <String>]
@@ -79,7 +78,7 @@ After the Connect-ExchangeOnline command is complete, the password key in the $U
7978

8079
### Example 2
8180
```powershell
82-
Connect-ExchangeOnline -UserPrincipalName [email protected] -ShowProgress $true
81+
Connect-ExchangeOnline -UserPrincipalName [email protected]
8382
```
8483

8584
This example connects to Exchange Online PowerShell using modern authentication for the account [email protected], which uses MFA.
@@ -520,6 +519,7 @@ The Organization parameter specifies the organization that's used in app-only au
520519
Type: String
521520
Parameter Sets: (All)
522521
Aliases:
522+
Applicable: Exchange Online
523523
524524
Required: False
525525
Position: Named
@@ -564,10 +564,10 @@ Accept wildcard characters: False
564564
```
565565

566566
### -ShowProgress
567-
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:
567+
The ShowProgress parameter specifies whether to show or hide the progress bar of imported cmdlets when you connect. Valid values are:
568568

569569
- $true: The progress bar is displayed. This is the default value.
570-
- $false: The progress bar isn't displayed.
570+
- $false: Currently, this value has no effect.
571571

572572
```yaml
573573
Type: Boolean
@@ -582,24 +582,6 @@ Accept pipeline input: False
582582
Accept wildcard characters: False
583583
```
584584

585-
### -SkipImportSession
586-
**Note**: This parameter is available only in version 2.0.4-Preview2 or later.
587-
588-
The SkipImportSession switch skips the import of cmdlets from the remote PowerShell session. You don't need to specify a value with this switch.
589-
590-
```yaml
591-
Type: SwitchParameter
592-
Parameter Sets: (All)
593-
Aliases:
594-
Applicable: Exchange Online
595-
596-
Required: False
597-
Position: Named
598-
Default value: None
599-
Accept pipeline input: False
600-
Accept wildcard characters: False
601-
```
602-
603585
### -TrackPerformance
604586
The TrackPerformance parameter measures additional events (for example, CPU load and memory consumed). Valid values are:
605587

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ If you use the UserPrincipalName parameter, you don't need to use the AzureADAut
103103
Type: String
104104
Parameter Sets: (All)
105105
Aliases:
106+
Applicable: Exchange Online
106107
107108
Required: False
108109
Position: 1

exchange/exchange-ps/exchange/Disable-AntiPhishRule.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.reviewer:
1414
## SYNOPSIS
1515
This cmdlet is available only in the cloud-based service.
1616

17-
Use the Disable-AntiPhishRule cmdlet to disable antiphish rules in your cloud-based organization..
17+
Use the Disable-AntiPhishRule cmdlet to disable antiphish rules in your cloud-based organization.
1818

1919
**Note**: We recommend that you use the Exchange Online PowerShell V2 module to connect to Exchange Online PowerShell. For instructions, see [Connect to Exchange Online PowerShell](https://docs.microsoft.com/powershell/exchange/connect-to-exchange-online-powershell).
2020

exchange/exchange-ps/exchange/Disable-Mailbox.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
8787
Disable-Mailbox -Identity "John Woods"
8888
```
8989

90-
This example disables the mailbox of the user named John Woods and removes all mailbox attributes from John's user account..
90+
This example disables the mailbox of the user named John Woods and removes all mailbox attributes from John's user account.
9191

9292
### Example 2
9393
```powershell

exchange/exchange-ps/exchange/Get-ActiveSyncDeviceAutoblockThreshold.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.reviewer:
1414
## SYNOPSIS
1515
This cmdlet is available only in on-premises Exchange.
1616

17-
Use the Get-ActiveSyncDeviceAutoblockThreshold cmdlet to obtain the Autoblock settings for Microsoft Exchange ActiveSync mobile devices..
17+
Use the Get-ActiveSyncDeviceAutoblockThreshold cmdlet to obtain the Autoblock settings for Microsoft Exchange ActiveSync mobile devices.
1818

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

exchange/exchange-ps/exchange/Get-DlpComplianceRule.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Accept wildcard characters: False
8080
{{ Fill IncludeExecutionRuleGuids Description }}
8181
8282
```yaml
83-
Type: $true | $false
83+
Type: Boolean
8484
Parameter Sets: (All)
8585
Aliases:
8686
Applicable: Security & Compliance Center

exchange/exchange-ps/exchange/Get-MonitoringItemHelp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
3535
Get-MonitoringItemHelp -Server Exch01 -Identity OutlookMapiHttp.Proxy\CrashEvent.msexchangemapifrontendapppoolEscalate\msexchangemapifrontendapppool | Format-List
3636
```
3737

38-
This example retrieves health set information for a monitoring item on the server named Exch01 and displays the output without truncating the results..
38+
This example retrieves health set information for a monitoring item on the server named Exch01 and displays the output without truncating the results.
3939

4040
## PARAMETERS
4141

exchange/exchange-ps/exchange/Get-OutboundConnector.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Accept wildcard characters: False
6969
The IncludeTestModeConnectors parameter filters the results by Outbound connectors that are in test mode. Valid values are:
7070
7171
- $true: Only Outbound connectors that are in test mode are returned in the results.
72-
- $false: All Outbound connectors that aren't in test mode are returned in the results.. This is the default value.
72+
- $false: All Outbound connectors that aren't in test mode are returned in the results. This is the default value.
7373
7474
You configure an Outbound connector in test mode by using the TestMode parameter on the New-OutboundConnector or Set-OutboundConnector cmdlets.
7575
@@ -90,7 +90,7 @@ Accept wildcard characters: False
9090
The IsTransportRuleScoped parameter filters the results by Outbound connectors that are scoped to transport rules (also known as mail flow rules). Valid values are:
9191
9292
- $true: Only Outbound connectors that are scoped to transport rules are returned in the results.
93-
- $false: All Outbound connectors that aren't scoped to transport rules are returned in the results.. This is the default value.
93+
- $false: All Outbound connectors that aren't scoped to transport rules are returned in the results. This is the default value.
9494
9595
You scope a transport rule to a specific Outbound connector by using the RouteMessageOutboundConnector parameter on the New-TransportRule or Set-TransportRule cmdlets.
9696

exchange/exchange-ps/exchange/Get-UnifiedAuditLogRetentionPolicy.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ The RecordType parameter filters the results by the record types that are define
7777
Type: AuditRecordType
7878
Parameter Sets: (All)
7979
Aliases:
80+
Applicable: Security & Compliance Center
8081

8182
Required: False
8283
Position: Named

0 commit comments

Comments
 (0)