Skip to content

Commit e1d3a18

Browse files
authored
Merge pull request MicrosoftDocs#822 from MicrosoftDocs/ExMigration
Ex migration
2 parents a64258e + 38dd6ec commit e1d3a18

17 files changed

+40
-16
lines changed

exchange/exchange-ps/exchange/antispam-antimalware/Export-QuarantineMessage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
2828

2929
### -------------------------- Example 1 --------------------------
3030
```
31-
$e=Export-QuarantineMessage -Identity c14401cf-aa9a-465b-cfd5-08d0f0ca37c5\4c2ca98e-94ea-db3a-7eb8-3b63657d4db7; $e.BodyEncoding; $e | select -ExpandProperty Eml | Out-File "C:\My Documents\Export1_ascii.eml" -Encoding ascii; $e | select -ExpandProperty Eml | Out-File "C:\My Documents\Export1_ascii.eml" -Encoding ascii
31+
$e = Export-QuarantineMessage -Identity c14401cf-aa9a-465b-cfd5-08d0f0ca37c5\4c2ca98e-94ea-db3a-7eb8-3b63657d4db7; $e.BodyEncoding; $e | select -ExpandProperty Eml | Out-File "C:\My Documents\Export1_ascii.eml" -Encoding ascii
3232
```
3333

3434
This example exports the quarantined message with the specified Identity value.

exchange/exchange-ps/exchange/encryption-and-certificates/Import-ExchangeCertificate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ This example imports a chain of certificates from the PKCS #7 file C:\\Certifica
7474
### -FileData
7575
The FileData parameter specifies the contents of the certificate file that you want to import. Typically, you use this parameter for PKCS #7 text certificate files that have .p7b or .p7c filename extensions. These text files contain the text: -----BEGIN CERTIFICATE----- and -----END CERTIFICATE----- or -----BEGIN PKCS7----- and -----END PKCS7-----.
7676

77-
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, ([Byte[]](Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0)).
77+
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, \(\[Byte\[\]\]\(Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0\)\).
7878

7979
You can use a local path if the certificate file is located on the Exchange server where you're running the command, and this is the same server where you want to install the certificate. Otherwise, use a UNC path (\\\\\<Server\>\\\<Share\>).
8080

exchange/exchange-ps/exchange/encryption-and-certificates/Import-RMSTrustedPublishingDomain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Accept wildcard characters: False
9999
### -FileData
100100
The FileData parameter specifies the XML file you want to import. The XML file contains the TPD you exported from the on-premises AD RMS server.
101101
102-
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, ([Byte[]](Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0)).
102+
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, \(\[Byte\[\]\]\(Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0\)\).
103103
104104
```yaml
105105
Type: Byte[]

exchange/exchange-ps/exchange/encryption-and-certificates/Set-SmimeConfig.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ Accept wildcard characters: False
568568
### -SMIMECertificateIssuingCA
569569
The SMIMECertificateIssuingCA parameter specifies the serialized certificate store (SST) that contains the Certificate Authority (CA) signing and intermediate certificate information.
570570
571-
You need to read the file to a byte-encoded object using the Get-Content cmdlet. For example: -SMIMECertificateIssuingCA $([byte[]](Get-Content -Encoding byte -Path "C:\\Temp\\CACertificateSerializedStore.sst" -ReadCount 0)
571+
You need to read the file to a byte-encoded object using the Get-Content cmdlet. For example: -SMIMECertificateIssuingCA $\(\[byte\[\]\]\(Get-Content -Encoding byte -Path "C:\\Temp\\CACertificateSerializedStore.sst" -ReadCount 0\)
572572
573573
Each certificate is checked, and if any certificates are expired, the operation will fail.
574574

exchange/exchange-ps/exchange/mail-flow/New-EdgeSubscription.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Accept wildcard characters: False
144144
### -FileData
145145
The FileData parameter specifies the byte-encoded data object that contains the Edge Subscription file information.
146146
147-
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, ([Byte[]](Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0)).
147+
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, \(\[Byte\[\]\]\(Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0\)\).
148148
149149
You can only use this parameter when you're running this command on a Mailbox server.
150150

exchange/exchange-ps/exchange/mailboxes/Import-RecipientDataProperty.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ This example imports the picture file for Ayla Kol.
5555
### -FileData
5656
The FileData parameter specifies the location and file name of the picture or audio file.
5757

58-
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, ([Byte[]](Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0)).
58+
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, \(\[Byte\[\]\]\(Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0\)\).
5959

6060
```yaml
6161
Type: Byte[]

exchange/exchange-ps/exchange/mailboxes/New-App.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ Accept wildcard characters: False
208208
### -FileData
209209
The FileData parameter specifies the location of the app manifest file. You need to specify only one source location for the app manifest file. You can specify the app manifest file by using the MarketplaceServicesUrl, Url, or FileData parameter.
210210
211-
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, ([Byte[]](Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0)).
211+
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, \(\[Byte\[\]\]\(Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0\)\).
212212
213213
```yaml
214214
Type: Byte[]

exchange/exchange-ps/exchange/move-and-migration/New-PublicFolderMigrationRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ Accept wildcard characters: False
256256
### -CSVData
257257
The CSVData parameter specifies the mapping file output generated by the PublicFoldertoMailboxMapGenerator.ps1 script. Use this parameter for local migrations.
258258
259-
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, ([Byte[]](Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0)).
259+
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, \(\[Byte\[\]\]\(Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0\)\).
260260
261261
You can't use this parameter with the CSVStream parameter, but you need to use it if you don't use CSVStream parameter.
262262

exchange/exchange-ps/exchange/organization/Set-OrganizationConfig.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Set-OrganizationConfig [-Identity] <OrganizationIdParameter>
2424
[-ActivityBasedAuthenticationTimeoutInterval <EnhancedTimeSpan>]
2525
[-ActivityBasedAuthenticationTimeoutWithSingleSignOnEnabled <$true | $false>]
2626
[-ByteEncoderTypeFor7BitCharsets <Int32>] [-Confirm] [-CustomerFeedbackEnabled <$true | $false>]
27+
[-DefaultGroupAccessType <Private | Public>]
2728
[-DistributionGroupDefaultOU <OrganizationalUnitIdParameter>]
2829
[-DistributionGroupNameBlockedWordsList <MultiValuedProperty>]
2930
[-DistributionGroupNamingPolicy <DistributionGroupNamingPolicy>] [-DomainController <Fqdn>]
@@ -81,6 +82,7 @@ Set-OrganizationConfig [-Identity] <OrganizationIdParameter> -SharedConfiguratio
8182
[-ActivityBasedAuthenticationTimeoutInterval <EnhancedTimeSpan>]
8283
[-ActivityBasedAuthenticationTimeoutWithSingleSignOnEnabled <$true | $false>]
8384
[-ByteEncoderTypeFor7BitCharsets <Int32>] [-Confirm] [-CustomerFeedbackEnabled <$true | $false>]
85+
[-DefaultGroupAccessType <Private | Public>]
8486
[-DistributionGroupDefaultOU <OrganizationalUnitIdParameter>]
8587
[-DistributionGroupNameBlockedWordsList <MultiValuedProperty>]
8688
[-DistributionGroupNamingPolicy <DistributionGroupNamingPolicy>] [-DomainController <Fqdn>]
@@ -139,6 +141,7 @@ Set-OrganizationConfig [[-Identity] <OrganizationIdParameter>]
139141
[-ActivityBasedAuthenticationTimeoutInterval <EnhancedTimeSpan>]
140142
[-ActivityBasedAuthenticationTimeoutWithSingleSignOnEnabled <$true | $false>]
141143
[-ByteEncoderTypeFor7BitCharsets <Int32>] [-Confirm] [-CustomerFeedbackEnabled <$true | $false>]
144+
[-DefaultGroupAccessType <Private | Public>]
142145
[-DistributionGroupDefaultOU <OrganizationalUnitIdParameter>]
143146
[-DistributionGroupNameBlockedWordsList <MultiValuedProperty>]
144147
[-DistributionGroupNamingPolicy <DistributionGroupNamingPolicy>] [-DomainController <Fqdn>]
@@ -380,6 +383,27 @@ Accept pipeline input: False
380383
Accept wildcard characters: False
381384
```
382385
386+
### -DefaultGroupAccessType
387+
This parameter is available only in the cloud-based service.
388+
389+
The DefaultGroupAccessType parameter specifies the default access type for Office 365 groups. Valid values are:
390+
391+
- Public
392+
393+
- Private (this is the default value)
394+
395+
```yaml
396+
Type: Private | Public
397+
Parameter Sets: (All)
398+
Aliases:
399+
Applicable: Exchange Online
400+
Required: False
401+
Position: Named
402+
Default value: Private
403+
Accept pipeline input: False
404+
Accept wildcard characters: False
405+
```
406+
383407
### -DistributionGroupDefaultOU
384408
The DistributionGroupDefaultOU parameter specifies the container where distribution groups are created by default.
385409

exchange/exchange-ps/exchange/policy-and-compliance-dlp/Import-DlpPolicyCollection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ This example imports the DLP policy collection in the file C:\\My Documents\\DLP
4343
### -FileData
4444
The FileData parameter specifies the DLP policy collection file you want to import.
4545

46-
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, ([Byte[]](Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0)).
46+
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, \(\[Byte\[\]\]\(Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0\)\).
4747

4848
```yaml
4949
Type: Byte[]

exchange/exchange-ps/exchange/policy-and-compliance-dlp/Import-DlpPolicyTemplate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This example imports the DLP policy template file C:\\My Documents\\External DLP
3838
### -FileData
3939
The FileData parameter specifies the DLP policy template file you want to import.
4040

41-
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, ([Byte[]](Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0)).
41+
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, \(\[Byte\[\]\]\(Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0\)\).
4242

4343
```yaml
4444
Type: Byte[]

exchange/exchange-ps/exchange/policy-and-compliance-dlp/New-ClassificationRuleCollection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This example imports the classification rule collection file C:\\My Documents\\E
4141
### -FileData
4242
The FileData parameter specifies the classification rule collection file you want to import.
4343

44-
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, ([Byte[]](Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0)).
44+
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, \(\[Byte\[\]\]\(Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0\)\).
4545

4646
```yaml
4747
Type: Byte[]

exchange/exchange-ps/exchange/policy-and-compliance-dlp/New-DlpPolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ Accept wildcard characters: False
180180
### -TemplateData
181181
The TemplateData parameter specifies an external DLP policy template file from which you can create a new DLP policy. You can't use the TemplateData and Template parameters in the same command.
182182
183-
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, ([Byte[]](Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0)).
183+
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, \(\[Byte\[\]\]\(Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0\)\).
184184
185185
```yaml
186186
Type: Byte[]

exchange/exchange-ps/exchange/policy-and-compliance-dlp/New-DlpSensitiveInformationTypeRulePackage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This example imports the sensitive information type rule package C:\\My Document
4040
### -FileData
4141
The FileData parameter specifies the sensitive information type rule package that you want to import.
4242

43-
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, ([Byte[]](Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0)).
43+
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, \(\[Byte\[\]\]\(Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0\)\).
4444

4545
```yaml
4646
Type: Byte[]

exchange/exchange-ps/exchange/policy-and-compliance-dlp/Set-ClassificationRuleCollection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This example imports the classification rule collection file C:\\My Documents\\E
4141
### -FileData
4242
The FileData parameter specifies the classification rule collection file you want to import.
4343

44-
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, ([Byte[]](Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0)).
44+
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, \(\[Byte\[\]\]\(Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0\)\).
4545

4646
```yaml
4747
Type: Byte[]

exchange/exchange-ps/exchange/policy-and-compliance-dlp/Set-DlpSensitiveInformationTypeRulePackage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This example imports the sensitive information type rule package C:\\My Document
4040
### -FileData
4141
The FileData parameter specifies the sensitive information type rule package that you want to import.
4242

43-
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, ([Byte[]](Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0)).
43+
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, \(\[Byte\[\]\]\(Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0\)\).
4444

4545
```yaml
4646
Type: Byte[]

exchange/exchange-ps/exchange/policy-and-compliance/Import-JournalRuleCollection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The first step retrieves journal rules from the previously exported XML file Exp
4949
### -FileData
5050
The FileData parameter specifies the variable name that contains the content of the XML file.
5151

52-
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, ([Byte[]](Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0)).
52+
A valid value for this parameter requires you to read the file to a byte-encoded object using the Get-Content cmdlet. For example, \(\[Byte\[\]\]\(Get-Content -Encoding Byte -Path "C:\\My Documents\\\<filename\>" -ReadCount 0\)\).
5353

5454
```yaml
5555
Type: Byte[]

0 commit comments

Comments
 (0)