Skip to content

Commit 8068060

Browse files
authored
Merge branch 'master' into typo-configuration
2 parents f0ef86f + 4a83ad2 commit 8068060

File tree

3 files changed

+22
-10
lines changed

3 files changed

+22
-10
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Enable or disable access to Exchange Online PowerShell"
33
ms.author: chrisda
44
author: chrisda
55
manager: serdars
6-
ms.date: 2/20/2018
6+
ms.date:
77
ms.audience: Admin
88
ms.topic: article
99
ms.service: exchange-online
@@ -59,7 +59,7 @@ $<VariableName> = <Get-Mailbox | Get-User> -ResultSize unlimited -Filter <Filter
5959
```
6060

6161
```
62-
$<VariableName> | foreach {Set-User -RemotePowerShellEnabled $false}
62+
$<VariableName> | foreach {Set-User -Identity $_.MicrosoftOnlineServicesID -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 -RemotePowerShellEnabled $false}
72+
$DSA | foreach {Set-User -Identity $_.MicrosoftOnlineServicesID -RemotePowerShellEnabled $false}
7373
```
7474

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

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

87-
This example uses the text file C:\My Documents\NoPowerShell.txt to identify the users by their email addresses. The text file must contain one email address on each line as follows:
87+
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:
8888

8989
```
9090
@@ -99,7 +99,7 @@ $NPS = Get-Content "C:\My Documents\NoPowerShell.txt"
9999
```
100100

101101
```
102-
$NPS | foreach {Set-User -RemotePowerShellEnabled $false}
102+
$NPS | foreach {Set-User -Identity $_.MicrosoftOnlineServicesID -RemotePowerShellEnabled $false}
103103
```
104104

105105
## View the Exchange Online PowerShell access for users

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

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,11 @@ Accept wildcard characters: False
738738
### -ConnectorsEnabledForSharepoint
739739
This parameter is available only in the cloud-based service.
740740
741-
{{Fill ConnectorsEnabledForSharepoint Description}}
741+
The ConnectorsEnabledForSharepoint parameter specifies whether to enable or disable connected apps on Sharepoint. Valid values are:
742+
743+
- $true: Connectors are enabled. This is the default value.
744+
745+
- $false: Connectors are disabled.
742746
743747
```yaml
744748
Type: $true | $false
@@ -755,7 +759,11 @@ Accept wildcard characters: False
755759
### -ConnectorsEnabledForTeams
756760
This parameter is available only in the cloud-based service.
757761
758-
{{Fill ConnectorsEnabledForTeams Description}}
762+
The ConnectorsEnabledForTeams parameter specifies whether to enable or disable connected apps on Teams. Valid values are:
763+
764+
- $true: Connectors are enabled. This is the default value.
765+
766+
- $false: Connectors are disabled.
759767
760768
```yaml
761769
Type: $true | $false
@@ -772,7 +780,11 @@ Accept wildcard characters: False
772780
### -ConnectorsEnabledForYammer
773781
This parameter is available only in the cloud-based service.
774782
775-
{{Fill ConnectorsEnabledForYammer Description}}
783+
The ConnectorsEnabledForYammer parameter specifies whether to enable or disable connected apps on Yammer. Valid values are:
784+
785+
- $true: Connectors are enabled. This is the default value.
786+
787+
- $false: Connectors are disabled.
776788
777789
```yaml
778790
Type: $true | $false

skype/skype-ps/skype/Set-CsTeamsClientConfiguration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ Accept wildcard characters: False
206206
```
207207
208208
### -AllowTBotProactiveMessaging
209-
When set to $true, T-bot will initiate a private chat session with users to help them use Teams.
209+
Deprecated, do not use.
210210
211211
```yaml
212212
Type: Boolean

0 commit comments

Comments
 (0)