Skip to content

Commit 0776a1a

Browse files
authored
Merge branch 'master' into patch-256
2 parents 55717ec + b9d8f72 commit 0776a1a

21 files changed

+260
-72
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ $<VariableName> = <Get-Mailbox | Get-User> -ResultSize unlimited -Filter <Filter
6464
```
6565

6666
```powershell
67-
$<VariableName> | foreach {Set-User -Identity $_ -RemotePowerShellEnabled $false}
67+
$<VariableName> | foreach {Set-User -Identity $_.WindowsEmailAddress -RemotePowerShellEnabled $false}
6868
```
6969

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

7676
```powershell
77-
$DSA | foreach {Set-User -Identity $_ -RemotePowerShellEnabled $false}
77+
$DSA | foreach {Set-User -Identity $_.WindowsEmailAddress -RemotePowerShellEnabled $false}
7878
```
7979

8080
### Use a list of specific users

exchange/exchange-ps/exchange/New-QuarantinePolicy.md

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -61,17 +61,6 @@ This example creates a new quarantine policy named ContosoTag with the same perm
6161

6262
To assign Limited access permissions, use the value 106. To assign Full access permissions, use the value 236.
6363

64-
### Example 2
65-
```powershell
66-
$LimitedAccess = New-QuarantinePermissions -PermissionToBlockSender $true -PermissionToDelete $true -PermissionToPreview $true -PermissionToRequestRelease $true
67-
68-
New-QuarantinePolicy -Name LimitedAccess -EndUserQuarantinePermissions $LimitedAccess
69-
```
70-
71-
This example creates a new quarantine policy named LimitedAccess with the same permissions as Limited access preset permissions group.
72-
73-
The first command uses the New-QuarantinePermissions cmdlet to store the permissions object in a variable. The second command uses the variable for the value of the EndUserQuarantinePermissions parameter.
74-
7564
## PARAMETERS
7665

7766
### -Name
@@ -204,11 +193,7 @@ Accept wildcard characters: False
204193
```
205194
206195
### -EndUserQuarantinePermissions
207-
The EndUserQuarantinePermissionsValue parameter specifies the end-user permissions for the quarantine policy.
208-
209-
A value for this parameter requires the New-QuarantinePermissions cmdlet. Store the results of the New-QuarantinePermissions command in a variable (for example, `$Perms = New-QuarantinePermissions <permissions>`) and then use the variable name (`$Perms`) for this parameter. For more information, see [New-QuarantinePermissions](https://docs.microsoft.com/powershell/module/exchange/new-quarantinepermissions).
210-
211-
Don't use this parameter with the EndUserQuarantinePermissionsValue parameter.
196+
This parameter is reserved for internal Microsoft use.
212197
213198
```yaml
214199
Type: QuarantinePermissions

exchange/exchange-ps/exchange/Set-ExternalInOutlook.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,3 +136,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
136136
## NOTES
137137

138138
## RELATED LINKS
139+
140+
[Set-OrganizationConfig](https://docs.microsoft.com/powershell/module/exchange/set-organizationconfig)

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ Set-OrganizationConfig -ShortenEventScopeDefault <ShortenEventScopeMode>
8181
[-EwsEnabled <Boolean>]
8282
[-ExchangeNotificationEnabled <Boolean>]
8383
[-ExchangeNotificationRecipients <MultiValuedProperty>]
84-
[-ExternalInOutlookEnabled <Boolean>]
8584
[-FindTimeAttendeeAuthenticationEnabled <Boolean>]
8685
[-FindTimeAutoScheduleDisabled <Boolean>]
8786
[-FindTimeLockPollForAttendeesEnabled <Boolean>]
@@ -3320,3 +3319,5 @@ To see the return types, which are also known as output types, that this cmdlet
33203319
## NOTES
33213320

33223321
## RELATED LINKS
3322+
3323+
[Set-OrganizationConfig](https://docs.microsoft.com/powershell/module/exchange/set-organizationconfig)

exchange/exchange-ps/exchange/Set-QuarantinePolicy.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,6 @@ This example configures the following permissions in the quarantine policy named
7070

7171
### Example 2
7272
```powershell
73-
$Perms = New-QuarantinePermissions -PermissionToDelete $true
74-
Set-QuarantinePolicy -Identity CustomAccess -EndUserQuarantinePermissions $Perms
75-
```
76-
77-
This example has the same result as the previous example, but uses the EndUserQuarantinePermissions parameter instead.
78-
79-
### Example 3
80-
```powershell
8173
Get-QuarantinePolicy -QuarantinePolicyType GlobalQuarantinePolicy | Set-QuarantinePolicy -MultiLanguageSetting ('English','ChineseSimplified','French') -MultiLanguageCustomDisclaimer ('For more information, contact the Help Desk.','有关更多信息,请联系服务台','Pour plus d'informations, contactez le service d'assistance.') -MultiLanguageSenderName ('Contoso administrator','Contoso管理员','Administrateur Contoso') -OrganizationBrandingEnabled $true
8274
```
8375

@@ -225,9 +217,7 @@ Accept wildcard characters: False
225217
```
226218
227219
### -EndUserQuarantinePermissions
228-
A value for this parameter requires the New-QuarantinePermissions cmdlet. Store the results of the New-QuarantinePermissions command in a variable (for example, `$Perms = New-QuarantinePermissions <permissions>`) and then use the variable name (`$Perms`) for this parameter. For more information, see [New-QuarantinePermissions](https://docs.microsoft.com/powershell/module/exchange/new-quarantinepermissions).
229-
230-
Don't use this parameter with the EndUserQuarantinePermissionsValue parameter.
220+
This parameter is reserved for internal Microsoft use.
231221
232222
```yaml
233223
Type: QuarantinePermissions

skype/skype-ps/skype/Get-CsOnlineAudioFile.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ schema: 2.0.0
1414
## SYNOPSIS
1515
Returns information about a specific or all uploaded audio files of a given application type.
1616

17-
> [!NOTE]
18-
> **Preview** The use of this cmdlet is in Public Preview.
19-
17+
2018
## SYNTAX
2119

2220
```powershell

skype/skype-ps/skype/Get-CsOnlineUser.md

Lines changed: 139 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,145 @@ If you want to exclude Skype for Business Online users from the data returned by
4949
By definition, users homed on the on-premises version will always have a TenantId equal to 00000000-0000-0000-0000-000000000000.
5050
Users homed on Skype for Business Online will a TenantId that is equal to some value other than 00000000-0000-0000-0000-000000000000.
5151

52+
**Note:**
53+
54+
Beginning Microsoft Teams PowerShell version 2.6.2 onwards, the below updates are applicable for TeamsOnly customers.
55+
56+
*Deprecated Attributes* - Theses are no longer relevant to Teams
57+
58+
- AcpInfo
59+
- AdminDescription
60+
- ArchivingPolicy
61+
- AudioVideoDisabled
62+
- BaseSimpleUrl
63+
- BroadcastMeetingPolicy
64+
- CallViaWorkPolicy
65+
- ClientPolicy
66+
- ClientUpdateOverridePolicy
67+
- ClientVersionPolicy
68+
- CloudMeetingOpsPolicy
69+
- CloudMeetingPolicy
70+
- CloudVideoInteropPolicy
71+
- ContactOptionFlags
72+
- CountryOrRegionDisplayName
73+
- Description
74+
- DistinguishedName
75+
- EnabledForRichPresence
76+
- ExchangeArchivingPolicy
77+
- ExchUserHoldPolicies
78+
- ExperiencePolicy
79+
- ExternalUserCommunicationPolicy
80+
- ExUmEnabled
81+
- Guid
82+
- HomeServer
83+
- HostedVoicemailPolicy
84+
- IPPBXSoftPhoneRoutingEnabled
85+
- IPPhone
86+
- IPPhonePolicy
87+
- IsByPassValidation
88+
- IsValid
89+
- LegalInterceptPolicy
90+
- LicenseRemovalTimestamp
91+
- LineServerURI
92+
- Manager
93+
- MNCReady
94+
- Name
95+
- NonPrimaryResource
96+
- ObjectCategory
97+
- ObjectClass
98+
- ObjectState
99+
- OnPremHideFromAddressLists
100+
- OriginalPreferredDataLocation
101+
- OriginatingServer
102+
- OriginatorSid
103+
- OverridePreferredDataLocation
104+
- PendingDeletion
105+
- PrivateLine
106+
- ProvisioningCounter
107+
- ProvisioningStamp
108+
- PublishingCounter
109+
- PublishingStamp
110+
- Puid
111+
- RemoteCallControlTelephonyEnabled
112+
- RemoteMachine
113+
- SamAccountName
114+
- ServiceInfo
115+
- StsRefreshTokensValidFrom
116+
- SubProvisioningCounter
117+
- SubProvisioningStamp
118+
- SubProvisionLineType
119+
- SyncingCounter
120+
- TargetRegistrarPool
121+
- TargetServerIfMoving
122+
- TeamsInteropPolicy
123+
- ThumbnailPhoto
124+
- UpgradeRetryCounter
125+
- UserAccountControl
126+
- UserProvisionType
127+
- UserRoutingGroupId
128+
- VoicePolicy
129+
- XForestMovePolicy
130+
- AddressBookPolicy
131+
- GraphPolicy
132+
- PinPolicy
133+
- PreferredDataLocationOverwritePolicy
134+
- PresencePolicy
135+
- SmsServicePolicy
136+
- TeamsVoiceRoute
137+
- ThirdPartyVideoSystemPolicy
138+
- UserServicesPolicy
139+
- ConferencingPolicy
140+
- Id
141+
- Identity
142+
- MobilityPolicy
143+
- OnlineDialinConferencingPolicy
144+
- Sid
145+
- TeamsWorkLoadPolicy
146+
- VoiceRoutingPolicy
147+
- ClientUpdatePolicy
148+
- HomePhone
149+
- HostedVoiceMail
150+
- MobilePhone
151+
- OtherTelephone
152+
- StreetAddress
153+
- WebPage
154+
- AssignedLicenses
155+
- OnPremisesUserPrincipalName
156+
- HostedVoiceMail
157+
- LicenseAssignmentStates
158+
- OnPremDomainName
159+
- OnPremSecurityIdentifier
160+
- OnPremSamAccountName
161+
- CallerIdPolicy
162+
- Fax
163+
- LastName
164+
- Office
165+
- Phone
166+
- WindowsEmailAddress*
167+
168+
*Attributes renamed/replaced:*
169+
- FirstName renamed to GivenName
170+
- DirSyncEnabled renamed to UserDirSyncEnabled
171+
- MCOValidationErrors renamed to UserValidationErrors
172+
173+
*New User Attributes*
174+
175+
FeatureTypes – Array of unique strings specifying what features are enabled for a user (plan not displayed).
176+
177+
*Deprecated parameters*
178+
179+
LdapFilter has been deprecated due to low usage.
180+
181+
*Changes in "-Filter" parameter*
182+
- Assigned Plan filter - Previous format will no longer be supported. Existing filters like AssignedPlan eq '<some-xml-string>' will stop working. This will need to be modified to one of the below formats:
183+
- AssignedPlans eq 'MCOEV' - For exact match
184+
- AssignedPlans eq '*MCO*' - for contains checks.
185+
186+
- EnterpriseVoiceEnabled filter
187+
- EnterpriseVoiceEnabled eq true / false
188+
189+
190+
52191
## EXAMPLES
53192

54193
### -------------------------- Example 1 --------------------------
@@ -100,8 +239,6 @@ PS C:\> Get-CsOnlineUser -Filter $filterString
100239
The commands shown in Example 6 filters all the online users with a certain TeamsMeetingPolicy assigned using a variable as filter input.
101240
To accomplish the task, the filter string is first constructed and resolved locally and then used by the Get-CsOnlineUser cmdlet.
102241

103-
104-
105242
## PARAMETERS
106243

107244
### -Credential

skype/skype-ps/skype/Get-CsOnlineVoiceUser.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,19 @@ Get-CsOnlineVoiceUser [-CivicAddressId <XdsCivicAddressId>] [-DomainController <
2323
```
2424

2525
## DESCRIPTION
26+
**NOTE:**
27+
28+
Beginning Teams PowerShell Module 2.6.2 onwards, the below updates are applicable for TeamsOnly customers.
29+
30+
*Deprecated Attributes*
31+
32+
- Below attributes have been deprecated under "-ExpandLocation" parameter:
33+
- Force
34+
- NumberOfResultsToSkip
35+
- CorrelationId
36+
- Verb
37+
- ResultSize
38+
- LicenceState
2639

2740
## EXAMPLES
2841

skype/skype-ps/skype/Get-CsTenant.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,64 @@ Get-CsTenant [-Filter <String>] [-DomainController <Fqdn>] [[-Identity] <OUIdPar
2727
In Microsoft Teams or Skype for Business Online, tenants are groups of users who have accounts homed on the service.
2828
Organizations will typically have a single tenant in which to house all their user accounts.
2929

30+
**NOTE:**
31+
32+
Beginning Teams PowerShell Module version 2.6.2 onwards, the below updates are applicable for TeamsOnly customers.
33+
34+
*Deprecated Attributes*
35+
36+
- DisableExoPlanProvisioning
37+
- DistinguishedName
38+
- ExperiencePolicy
39+
- Id
40+
- IsByPassValidation
41+
- IsMNC
42+
- IsReadinessUploaded
43+
- IsUpgradeReady
44+
- LastSubProvisionTimeStamp
45+
- MNCEnableTimeStamp
46+
- Name
47+
- ObjectCategory
48+
- ObjectClass
49+
- ObjectState
50+
- OriginalRegistrarPool
51+
- OriginatingServer
52+
- PendingDeletion
53+
- ProvisioningCounter
54+
- PublicProvider
55+
- PublishingCounter
56+
- RegistrarPool
57+
- RemoteMachine
58+
- SubProvisioningCounter
59+
- SubProvisioningStamp
60+
- SyncingCounter
61+
- TenantPoolExtension
62+
- UpgradeRetryCounter
63+
- UserRoutingGroupIds
64+
- XForestMovePolicy
65+
- Guid
66+
- HostedVoiceMailNotProvisioned
67+
- IsO365MNC
68+
- IsValid
69+
- NonPrimarySource
70+
- OcoDomainTracked
71+
- Phone
72+
- ProvisionType
73+
- TeamsUpgradeEligible
74+
- TelehealthEnabled
75+
- TenantNotified
76+
- AssignedLicenses
77+
- OnPremisesImmutableId
78+
- OnPremisesUserPrincipalName
79+
- HostedVoiceMail
80+
- OnPremSecurityIdentifier
81+
- OnPremSamAccountName
82+
- DefaultDataLocation
83+
- DefaultPoolFqdn
84+
- AdminDescription
85+
- AllowedDataLocation
86+
- Description
87+
3088
## EXAMPLES
3189

3290
### -------------------------- Example 1 --------------------------

skype/skype-ps/skype/New-CsTeamsMeetingPolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -911,7 +911,7 @@ Controls how the join information in meeting invitations is displayed by enforci
911911
Note: All Teams supported languages can be specified using language codes. For more information about its delivery date, see the [roadmap (Feature ID: 81521)](https://www.microsoft.com/en-us/microsoft-365/roadmap?filters=&searchterms=81521).
912912
913913
The preliminary list of available languages is shown below:
914-
ar-SA,az-Latn-AZ,bg-BG,ca-ES,cs-CZ,cy-GB,da-DK,de-DE,el- GR,en-GB,es-ES,es-MX,et-EE,eu-ES,fi-FI,fil-PH,fr-CA,fr-FR,gl-ES,he-IL,hi-IN,hr-HR,hu-HU,id-ID,is-IS,it-IT,ja-JP,ka-GE,k k-KZ,ko-KR,lt-LT,lv-LV,mk-MK,ms-MY,nb-NO,nl-NL,nn-NO,pl-PL,pt-BR,pt-PT,ro-RO,ru-RU,sk-SK,sl-SL,sq-AL,sr-Latn-RS,sv-SE,t h-TH,tr-TR,uk-UA,vi-VN,zh-CN,zh-TW.
914+
ar-SA,az-Latn-AZ,bg-BG,ca-ES,cs-CZ,cy-GB,da-DK,de-DE,el-GR,en-GB,en-US,es-ES,es-MX,et-EE,eu-ES,fi-FI,fil-PH,fr-CA,fr-FR,gl-ES,he-IL,hi-IN,hr-HR,hu-HU,id-ID,is-IS,it-IT,ja-JP,ka-GE,kk-KZ,ko-KR,lt-LT,lv-LV,mk-MK,ms-MY,nb-NO,nl-NL,nn-NO,pl-PL,pt-BR,pt-PT,ro-RO,ru-RU,sk-SK,sl-SL,sq-AL,sr-Latn-RS,sv-SE,th-TH,tr-TR,uk-UA,vi-VN,zh-CN,zh-TW.
915915
916916
```yaml
917917
Type: String

skype/skype-ps/skype/Remove-CsOnlineAudioFile.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ schema: 2.0.0
1414
## SYNOPSIS
1515
Marks an audio file of application type TenantGlobal for deletion and later removal (within 24 hours).
1616

17-
> [!NOTE]
18-
> **Preview** The use of this cmdlet is in Public Preview.
19-
2017

2118
## SYNTAX
2219

skype/skype-ps/skype/Set-CsTeamsCallingPolicy.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -429,13 +429,12 @@ Accept wildcard characters: False
429429
```
430430
431431
### -SpamFilteringEnabledType
432-
Determines if Spam filtering is enabled.
432+
Determines Spam filtering mode.
433433
434434
Possible values:
435-
- Enabled
436-
- Disabled
437-
- EnabledWithoutIVR (Choosing this value will disable the default spam checking which integrates the Captcha IVR Bot into the flow. The call will not be redirected to the bot for checking against fraudulent calls but will be allowed to go to the original target if the spam score is not high.)
438-
435+
- Enabled - Spam Filtering is fully enabled. Both Basic and Captcha IVR checks are performed. In case the call is considered as spam, user will get "Spam Likely" notification in Teams
436+
- Disabled - Spam Filtering is completely disabled. No checked are performed. "Spam Likely" notification will not appear.
437+
- EnabledWithoutIVR - Spam Filtering is enabled partially. Captcha IVR (Interactive Voice Response) checks are disabled. "Spam Likely" notification will appear. A call might get dropped in case it gets a high score from Basic checks.
439438
440439
```yaml
441440
Type: String

skype/skype-ps/skype/Set-CsTeamsMeetingPolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ Controls how the join information in meeting invitations is displayed by enforci
996996
Note: All Teams supported languages can be specified using language codes. For more information about its delivery date, see the [roadmap (Feature ID: 81521)](https://www.microsoft.com/en-us/microsoft-365/roadmap?filters=&searchterms=81521).
997997
998998
The preliminary list of available languages is shown below:
999-
ar-SA,az-Latn-AZ,bg-BG,ca-ES,cs-CZ,cy-GB,da-DK,de-DE,el- GR,en-GB,es-ES,es-MX,et-EE,eu-ES,fi-FI,fil-PH,fr-CA,fr-FR,gl-ES,he-IL,hi-IN,hr-HR,hu-HU,id-ID,is-IS,it-IT,ja-JP,ka-GE,k k-KZ,ko-KR,lt-LT,lv-LV,mk-MK,ms-MY,nb-NO,nl-NL,nn-NO,pl-PL,pt-BR,pt-PT,ro-RO,ru-RU,sk-SK,sl-SL,sq-AL,sr-Latn-RS,sv-SE,t h-TH,tr-TR,uk-UA,vi-VN,zh-CN,zh-TW.
999+
ar-SA,az-Latn-AZ,bg-BG,ca-ES,cs-CZ,cy-GB,da-DK,de-DE,el-GR,en-GB,en-US,es-ES,es-MX,et-EE,eu-ES,fi-FI,fil-PH,fr-CA,fr-FR,gl-ES,he-IL,hi-IN,hr-HR,hu-HU,id-ID,is-IS,it-IT,ja-JP,ka-GE,kk-KZ,ko-KR,lt-LT,lv-LV,mk-MK,ms-MY,nb-NO,nl-NL,nn-NO,pl-PL,pt-BR,pt-PT,ro-RO,ru-RU,sk-SK,sl-SL,sq-AL,sr-Latn-RS,sv-SE,th-TH,tr-TR,uk-UA,vi-VN,zh-CN,zh-TW.
10001000
10011001
```yaml
10021002
Type: String

0 commit comments

Comments
 (0)