Skip to content

Commit dd328a1

Browse files
committed
Merge branch 'master' into Feedback-chrisda
2 parents d179880 + 5354e6c commit dd328a1

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

exchange/docs-conceptual/app-only-auth-powershell-v2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,14 +186,14 @@ For a detailed visual flow about creating applications in Azure AD, see <https:/
186186

187187
Create a self-signed x.509 certificate using one of the following methods:
188188

189-
- (Recommended) Use the [New-SelfSignedCertificate](https://docs.microsoft.com/powershell/module/pkiclient/new-selfsignedcertificate), [Export-Certificate](https://docs.microsoft.com/powershell/module/pkiclient/export-certificate) and [Export-PfxCertificate](https://docs.microsoft.com/powershell/module/pkiclient/export-pfxcertificate) cmdlets in an elevated (run as administrator) Windows PowerShell session to request a self-signed certificate and export it to `.cer` and `.pfx` (SHA1 by default).
189+
- (Recommended) Use the [New-SelfSignedCertificate](https://docs.microsoft.com/powershell/module/pkiclient/new-selfsignedcertificate), [Export-Certificate](https://docs.microsoft.com/powershell/module/pkiclient/export-certificate) and [Export-PfxCertificate](https://docs.microsoft.com/powershell/module/pkiclient/export-pfxcertificate) cmdlets in an elevated (run as administrator) Windows PowerShell session to request a self-signed certificate and export it to `.cer` and `.pfx` (SHA1 by default). For example:
190190

191191
```powershell
192192
# Create certificate
193193
$mycert = New-SelfSignedCertificate -DnsName "contoso.org" -CertStoreLocation "cert:\LocalMachine\My" -NotAfter (Get-Date).AddYears(1) -KeySpec KeyExchange
194194
195195
# Export certificate to .pfx file
196-
$mycert | Export-PfxCertificate -FilePath mycert.pfx -Password $(ConvertTo-SecureString -String "P@s$w0rd1234" -AsPlainText -Force)
196+
$mycert | Export-PfxCertificate -FilePath mycert.pfx -Password $(ConvertTo-SecureString -String "P@ssw0Rd1234" -AsPlainText -Force)
197197
198198
# Export certificate to .cer file
199199
$mycert | Export-Certificate -FilePath mycert.cer

exchange/exchange-ps/exchange/Enable-App.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Accept wildcard characters: False
108108
```
109109

110110
### -Mailbox
111-
The Mailbox parameter specifies the the mailbox. You can use any value that uniquely identifies the mailbox. For example:
111+
The Mailbox parameter specifies the mailbox. You can use any value that uniquely identifies the mailbox. For example:
112112

113113
- Name
114114
- Alias

exchange/exchange-ps/exchange/Get-WebServicesVirtualDirectory.md

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

5050
### Example 1
5151
```powershell
52-
Get-WebServicesVirtualDirectory -ServerMBX01
52+
Get-WebServicesVirtualDirectory -Server MBX01
5353
```
5454

5555
This example returns a summary list of all EWS virtual directories on the server named MBX01.

exchange/exchange-ps/exchange/New-AutoSensitivityLabelRule.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ Accept wildcard characters: False
406406
```
407407

408408
### -ExceptIfProcessingLimitExceeded
409-
The ExceptIfProcessingLimitExceeded parameter specifies an exception for the auto-labeling policy rule rule that looks for files where scanning couldn't complete. Valid values are:
409+
The ExceptIfProcessingLimitExceeded parameter specifies an exception for the auto-labeling policy rule that looks for files where scanning couldn't complete. Valid values are:
410410

411411
- $true: Look for files where scanning couldn't complete.
412412
- $false: Don't look for files where scanning couldn't complete.
@@ -441,7 +441,7 @@ Accept wildcard characters: False
441441
```
442442

443443
### -ExceptIfSenderIPRanges
444-
The ExceptIfSenderIpRanges parameter specifies an exception for the auto-labeling policy rule rule that looks for senders whose IP addresses matches the specified value, or fall within the specified ranges. Valid values are:
444+
The ExceptIfSenderIpRanges parameter specifies an exception for the auto-labeling policy rule that looks for senders whose IP addresses matches the specified value, or fall within the specified ranges. Valid values are:
445445

446446
- Single IP address: For example, 192.168.1.1.
447447
- IP address range: For example, 192.168.0.1-192.168.0.254.

exchange/exchange-ps/exchange/Set-OwaMailboxPolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1373,7 +1373,7 @@ Accept wildcard characters: False
13731373
### -NpsSurveysEnabled
13741374
This parameter is available only in the cloud-based service.
13751375

1376-
The NpsSurveysEnabled parameter specifies whether to enable or disable the Net Promoter Score (NPS) survey in Outlook on the web. The survey allows uses to rate Outlook on the web on a scale of 1 to 5, and to provide feedback and suggested improvements in free text. Valid values are:
1376+
The NpsSurveysEnabled parameter specifies whether to enable or disable the Net Promoter Score (NPS) survey in Outlook on the web. The survey allows users to rate Outlook on the web on a scale of 1 to 5, and to provide feedback and suggested improvements in free text. Valid values are:
13771377

13781378
- $true: The NPS survey is available in Outlook on the web. This is the default value.
13791379
- $false: The NPS survey isn't available in Outlook on the web.

0 commit comments

Comments
 (0)