Skip to content

Commit 0d65040

Browse files
authored
Merge branch 'master' into patch-184
2 parents 8bb4d1e + 33e6f5d commit 0d65040

File tree

2 files changed

+18
-19
lines changed

2 files changed

+18
-19
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ROBOTS: NOINDEX, NOFOLLOW
1717
description: "Learn about using the Exchange Online V2 module in scripts and other long-running tasks with Modern Authentication and app-only authentication."
1818
---
1919

20-
# App-only authentication in the EXO V2 module
20+
# App-only authentication for unattended scripts in the EXO V2 module
2121

2222
> [!NOTE]
2323
> This feature is currently in Public Preview, and is available in the Preview release of Exchange Online PowerShell V2 Module.
@@ -31,7 +31,7 @@ Install-Module -Name ExchangeOnlineManagement -RequiredVersion 2.0.3-Preview -Al
3131
To update from an earlier version of the of the EXO V2 module, run the following command:
3232

3333
```powershell
34-
Update-Module -Name ExchangeOnlineManagement -AllowPrerelease
34+
Update-Module -Name ExchangeOnlineManagement -RequiredVersion 2.0.3-Preview -AllowPrerelease
3535
```
3636

3737
Auditing and reporting scenarios in Exchange Online often involve scripts that run unattended. In most cases, these unattended scripts access Exchange Online PowerShell using Basic authentication (a username and password). Even when the connection to Exchange Online PowerShell uses Modern authentication, the credentials are stored in a local file or a secret vault that's access at run-time.
@@ -43,13 +43,13 @@ The following examples show how to use the Exchange Online PowerShell V2 module
4343
- Connect using a local certificate:
4444

4545
```powershell
46-
Connect-ExchangeOnline -CertificateFilePath "C:\Users\johndoe\Desktop\automation-cert.pfx" -AppID "alpha-beta-gamma-123456" -Organization "contosoelectronics.onmicrosoft.com"
46+
Connect-ExchangeOnline -CertificateFilePath "C:\Users\johndoe\Desktop\automation-cert.pfx" -AppID "36ee4c6c-0812-40a2-b820-b22ebd02bce3" -Organization "contosoelectronics.onmicrosoft.com"
4747
```
4848

4949
- Connect using a certificate thumbprint:
5050

5151
```powershell
52-
Connect-ExchangeOnline -CertificateThumbPrint "012THISISADEMOTHUMBPRINT" -AppID "alpha-beta-gamma-123456" -Organization "contosoelectronics.onmicrosoft.com"
52+
Connect-ExchangeOnline -CertificateThumbPrint "012THISISADEMOTHUMBPRINT" -AppID "36ee4c6c-0812-40a2-b820-b22ebd02bce3" -Organization "contosoelectronics.onmicrosoft.com"
5353
```
5454

5555
When you use the _CertificateThumbPrint_ parameter, the certificate needs to be installed on the computer where you are running the command. The certificate should be installed in the user certificate store.
@@ -103,7 +103,7 @@ For a detailed visual flow bout creating applications in Azure AD, see <https://
103103
- Security reader
104104
- Security administrator
105105
- Helpdesk administrator
106-
- Exchange Service administrator
106+
- Exchange administrator
107107
- Global Reader
108108
109109
## Appendix

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

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Set-OwaMailboxPolicy [-Identity] <MailboxPolicyIdParameter>
7474
[-LogonAndErrorLanguage <Int32>]
7575
[-Name <String>]
7676
[-NotesEnabled <Boolean>]
77-
[-NpsMailboxPolicy <Boolean>]
77+
[-NpsSurveysEnabled <Boolean>]
7878
[-OrganizationEnabled <Boolean>]
7979
[-OneDriveAttachmentsEnabled <Boolean>]
8080
[-OnSendAddinsEnabled <Boolean>]
@@ -1332,26 +1332,25 @@ Accept pipeline input: False
13321332
Accept wildcard characters: False
13331333
```
13341334
1335-
### -NPSMailboxPolicy
1335+
### -NpsSurveysEnabled
13361336
This parameter is avaialble only in the cloud-based service.
13371337
1338-
The NPSMailboxPolicy 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:
1338+
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:
13391339
13401340
- $true: The NPS survey is available in Outlook on the web. This is the default value.
13411341
13421342
- $false: The NPS survey isn't available in Outlook on the web.
13431343
1344-
```yaml
1345-
Type: Boolean
1346-
Parameter Sets: (All)
1347-
Aliases:
1348-
Applicable: Exchange Online
1349-
1350-
Required: False
1351-
Position: Named
1352-
Default value: None
1353-
Accept pipeline input: False
1354-
Accept wildcard characters: False
1344+
```yaml
1345+
Type: Boolean
1346+
Parameter Sets: (All)
1347+
Aliases:
1348+
Applicable: Exchange Online
1349+
Required: False
1350+
Position: Named
1351+
Default value: None
1352+
Accept pipeline input: False
1353+
Accept wildcard characters: False
13551354
```
13561355
13571356
### -OneDriveAttachmentsEnabled

0 commit comments

Comments
 (0)