Skip to content

Commit a1957d2

Browse files
Merge branch 'master' into patch-4
2 parents fca3966 + c3a8ecf commit a1957d2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

exchange/docs-conceptual/exchange-online/disable-access-to-exchange-online-powershell.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ $<VariableName> = <Get-Mailbox | Get-User> -ResultSize unlimited -Filter <Filter
5959
```
6060

6161
```
62-
$<VariableName> | foreach {Set-User -Identity $_.MicrosoftOnlineServicesID -RemotePowerShellEnabled $false}
62+
$<VariableName> | foreach {Set-User -Identity $_ -RemotePowerShellEnabled $false}
6363
```
6464

6565
This example removes access to Exchange Online PowerShell for all users whose **Title** attribute contains the value "Sales Associate".
@@ -69,7 +69,7 @@ $DSA = Get-User -ResultSize unlimited -Filter {(RecipientType -eq 'UserMailbox')
6969
```
7070

7171
```
72-
$DSA | foreach {Set-User -Identity $_.MicrosoftOnlineServicesID -RemotePowerShellEnabled $false}
72+
$DSA | foreach {Set-User -Identity $_ -RemotePowerShellEnabled $false}
7373
```
7474

7575
### Use a list of specific users
@@ -81,7 +81,7 @@ $<VariableName> = Get-Content <text file>
8181
```
8282

8383
```
84-
$<VariableName> | foreach {Set-User -Identity $_.MicrosoftOnlineServicesID -RemotePowerShellEnabled $false}
84+
$<VariableName> | foreach {Set-User -Identity $_ -RemotePowerShellEnabled $false}
8585
```
8686

8787
This example uses the text file C:\My Documents\NoPowerShell.txt to identify the users by their accounts. The text file must contain one account on each line as follows:

exchange/exchange-ps/exchange/advanced-threat-protection/Set-AntiPhishPolicy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,9 @@ Accept wildcard characters: False
231231
### -EnableMailboxIntelligence
232232
The EnableMailboxIntelligence parameter specifies whether to enable or disable mailbox intelligence (the first contact graph) in ___domain and user impersonation protection. Valid values are:
233233
234-
- $true: Use mailbox intelligence in ___domain and user impersonation protection.
234+
- $true: Use mailbox intelligence in ___domain and user impersonation protection. This is the default value.
235235
236-
- $false: Don't use mailbox intelligence in ___domain and user impersonation protection. This is the default value.
236+
- $false: Don't use mailbox intelligence in ___domain and user impersonation protection.
237237
238238
```yaml
239239
Type: $true | $false

exchange/exchange-ps/exchange/mailboxes/Remove-CalendarEvents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Remove-CalendarEvents [-Identity] <MailboxIdParameter> [-CancelOrganizedMeetings
2323
```
2424

2525
## DESCRIPTION
26-
This cmdlet cancels meetings in the specified mailbox where the mailbox is the meeting organizer, and the meeting has one or more attendees or resources. It doesn't cancel appointments or meetings without attendees or resources.
26+
This cmdlet cancels meetings in the specified mailbox where the mailbox is the meeting organizer, and the meeting has one or more attendees or resources. It doesn't cancel appointments or meetings without attendees or resources. Because meeting cancellations must be sent out, the mailbox must still be enabled to send mail.
2727

2828
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see Find the permissions required to run any Exchange cmdlet (https://technet.microsoft.com/library/mt432940.aspx).
2929

0 commit comments

Comments
 (0)