Skip to content

Commit f76d612

Browse files
authored
Merge branch 'master' into patch-4
2 parents e0bb554 + 8e70db6 commit f76d612

File tree

70 files changed

+1297
-179
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+1297
-179
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/Enable-Mailbox.md

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ For information about the parameter sets in the Syntax section below, see [Excha
2424

2525
### Arbitration
2626
```
27-
Enable-Mailbox [-Identity] <UserIdParameter>
28-
[-Arbitration]
27+
Enable-Mailbox [-Identity] <UserIdParameter> [-Arbitration]
2928
[-ActiveSyncMailboxPolicy <MailboxPolicyIdParameter>]
3029
[-Alias <String>]
3130
[-Confirm]
@@ -63,8 +62,7 @@ Enable-Mailbox [-Identity] <UserIdParameter> -ArchiveDomain <SmtpDomain>
6362

6463
### Discovery
6564
```
66-
Enable-Mailbox [-Identity] <UserIdParameter>
67-
[-Discovery]
65+
Enable-Mailbox [-Identity] <UserIdParameter> [-Discovery]
6866
[-ActiveSyncMailboxPolicy <MailboxPolicyIdParameter>]
6967
[-Alias <String>]
7068
[-Confirm]
@@ -83,8 +81,7 @@ Enable-Mailbox [-Identity] <UserIdParameter>
8381

8482
### Equipment
8583
```
86-
Enable-Mailbox [-Identity] <UserIdParameter>
87-
[-Equipment]
84+
Enable-Mailbox [-Identity] <UserIdParameter> [-Equipment]
8885
[-ActiveSyncMailboxPolicy <MailboxPolicyIdParameter>]
8986
[-Alias <String>]
9087
[-Confirm]
@@ -148,8 +145,7 @@ Enable-Mailbox [-Identity] <UserIdParameter> -LinkedDomainController <String> -
148145

149146
### PublicFolder
150147
```
151-
Enable-Mailbox [-Identity] <UserIdParameter>
152-
[-PublicFolder]
148+
Enable-Mailbox [-Identity] <UserIdParameter> [-PublicFolder]
153149
[-ActiveSyncMailboxPolicy <MailboxPolicyIdParameter>]
154150
[-Alias <String>]
155151
[-Confirm]
@@ -169,8 +165,7 @@ Enable-Mailbox [-Identity] <UserIdParameter>
169165

170166
### Room
171167
```
172-
Enable-Mailbox [-Identity] <UserIdParameter>
173-
[-Room]
168+
Enable-Mailbox [-Identity] <UserIdParameter> [-Room]
174169
[-ActiveSyncMailboxPolicy <MailboxPolicyIdParameter>]
175170
[-Alias <String>]
176171
[-Confirm]
@@ -189,8 +184,7 @@ Enable-Mailbox [-Identity] <UserIdParameter>
189184

190185
### Shared
191186
```
192-
Enable-Mailbox [-Identity] <UserIdParameter>
193-
[-Shared]
187+
Enable-Mailbox [-Identity] <UserIdParameter> [-Shared]
194188
[-ActiveSyncMailboxPolicy <MailboxPolicyIdParameter>]
195189
[-Alias <String>]
196190
[-Confirm]
@@ -229,8 +223,7 @@ Enable-Mailbox [-Identity] <UserIdParameter>
229223

230224
### Archive
231225
```
232-
Enable-Mailbox [-Identity] <UserIdParameter>]
233-
[-Archive]
226+
Enable-Mailbox [-Identity] <UserIdParameter>] [-Archive]
234227
[-ArchiveDatabase <DatabaseIdParameter>]
235228
[-ArchiveGuid <Guid>]
236229
[-ArchiveName <MultiValuedProperty>]
@@ -249,8 +242,7 @@ Enable-Mailbox [-Identity] <UserIdParameter>]
249242

250243
### AuditLog
251244
```
252-
Enable-Mailbox [-Identity] <UserIdParameter>
253-
[AuditLog]
245+
Enable-Mailbox [-Identity] <UserIdParameter> [-AuditLog]
254246
[-ActiveSyncMailboxPolicy <MailboxPolicyIdParameter>]
255247
[-Alias <String>]
256248
[-Confirm]
@@ -267,8 +259,7 @@ Enable-Mailbox [-Identity] <UserIdParameter>
267259

268260
### AutoExpandingArchive
269261
```
270-
Enable-Mailbox [-Identity] <UserIdParameter>
271-
[-AutoExpandingArchive]
262+
Enable-Mailbox [-Identity] <UserIdParameter> [-AutoExpandingArchive]
272263
[-Confirm]
273264
[-Force]
274265
[-RoleAssignmentPolicy <MailboxPolicyIdParameter>]

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-ActivityAlert.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ For information about the parameter sets in the Syntax section below, see [Excha
2222

2323
```
2424
Get-ActivityAlert [[-Identity] <ComplianceRuleIdParameter>]
25-
[-DomainController <Fqdn>]
2625
[<CommonParameters>]
2726
```
2827

exchange/exchange-ps/exchange/Get-AdministrativeUnit.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ For information about the parameter sets in the Syntax section below, see [Excha
2727
```
2828
Get-AdministrativeUnit [[-Identity] <AdministrativeUnitIdParameter>]
2929
[-Confirm]
30+
[-DomainController <Fqdn>]
3031
[-WhatIf]
3132
[<CommonParameters>]
3233
```

exchange/exchange-ps/exchange/Get-CASMailboxPlan.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ For information about the parameter sets in the Syntax section below, see [Excha
2525
```
2626
Get-CASMailboxPlan [[-Identity] <MailboxPlanIdParameter>]
2727
[-Credential <PSCredential>]
28+
[-DomainController <Fqdn>]
2829
[-Filter <String>]
2930
[-IgnoreDefaultScope]
3031
[-ResultSize <Unlimited>]
@@ -96,9 +97,7 @@ Accept wildcard characters: False
9697
```
9798

9899
### -DomainController
99-
This parameter is available only in on-premises Exchange.
100-
101-
The DomainController parameter specifies the domain controller that's used by this cmdlet to read data from or write data to Active Directory. You identify the domain controller by its fully qualified domain name (FQDN). For example, dc01.contoso.com.
100+
This parameter is reserved for internal Microsoft use.
102101

103102
```yaml
104103
Type: Fqdn

0 commit comments

Comments
 (0)