Skip to content

Commit 9b87447

Browse files
committed
Merge branch 'main' into chrisda
2 parents 8cb21ca + b833667 commit 9b87447

File tree

3 files changed

+21
-73
lines changed

3 files changed

+21
-73
lines changed

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

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -252,31 +252,27 @@ _New Operators_
252252

253253
These filtering operators have been reintroduced:
254254

255-
- "-like" operator now supports the use of wildcard operators in 'contains' and 'ends with' scenarios. For example:
255+
`-like` operator now supports the use of wildcard operators in 'contains' and 'ends with' scenarios. For example:
256256

257-
```
258-
Contains Scenario: Get-CsOnlineUser -Filter "DisplayName -like '*abc*'"
259-
Ends with scenario: Get-CsOnlineUser -Filter {DisplayName -like '*abc'}
260-
```
257+
- Contains Scenario: Get-CsOnlineUser -Filter "DisplayName -like '*abc*'"
258+
- Ends with scenario: Get-CsOnlineUser -Filter {DisplayName -like '*abc'}
261259

262-
- "-contains" can now be used to filter properties that are an array of strings like FeatureTypes, ProxyAddresses, and ShadowProxyAddresses. For example:
263-
```
260+
`-contains` can now be used to filter properties that are an array of strings like FeatureTypes, ProxyAddresses, and ShadowProxyAddresses. For example:
264261

265-
Get-CsOnlineUser -Filter {FeatureTypes -contains "PhoneSystem"}
266-
Get-CsOnlineUser -Filter {ProxyAddresses -contains "SMTP:[email protected]"}
267-
```
262+
- Get-CsOnlineUser -Filter {FeatureTypes -contains "PhoneSystem"}
263+
- Get-CsOnlineUser -Filter {ProxyAddresses -contains "SMTP:[email protected]"}
268264

269-
- "-gt" (greater than), "-lt" (less than), "-le" (less than or equal to) can now be used for filtering all string properties. For example:
270265

271-
```
272-
Get-CsOnlineUser -Filter {UserPrincipalName -gt/-le/-lt "abc"}
273-
```
266+
`-gt` (greater than), `-lt` (less than), and `-le` (less than or equal to) can now be used for filtering all string properties. For example:
274267

275-
- "-ge" (greater than or equal to) can now also be used for filtering on policies. For example:
268+
- Get-CsOnlineUser -Filter {UserPrincipalName -gt/-le/-lt "abc"}
269+
270+
`-ge` (greater than or equal to) can now also be used for filtering on policies. For example:
271+
272+
- Get-CsOnlineUser -Filter {ExternalAccessPolicy -ge "xyz_policy"}
273+
274+
**Note**: Some comparison operators mentioned above including -ge, -le, -gt, and -lt are case-sensitive for Policies and capital letters are considered smaller than small letters.
276275

277-
```
278-
Get-CsOnlineUser -Filter {ExternalAccessPolicy -ge "xyz_policy"}
279-
```
280276

281277
**Updates in Teams PowerShell Module version 3.0.0 and above**
282278

skype/skype-ps/skype/Set-CsOnlineDialInConferencingUser.md

Lines changed: 6 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ Use the `Set-CsOnlineDialInConferencingUser` cmdlet to modify the properties of
2424
### TenantIdParams (Default)
2525
```
2626
Set-CsOnlineDialInConferencingUser [-Identity] <UserIdParameter> [-BridgeId <Guid>]
27-
[-BridgeName <String>] [-Tenant <Guid>] [-ConferenceId <System.Int32>] [-ResetConferenceId]
28-
[-ServiceNumber <String>] [-TollFreeServiceNumber <String>] [-AllowPSTNOnlyMeetings <Boolean>] [-Force]
27+
[-BridgeName <String>] [-Tenant <Guid>] [-ServiceNumber <String>] [-TollFreeServiceNumber <String>] [-AllowPSTNOnlyMeetings <Boolean>] [-Force]
2928
[-ResetLeaderPin] [-AllowTollFreeDialIn <Boolean>] [-SendEmailToAddress <String>]
3029
[-SendEmailFromAddress <String>] [-SendEmailFromDisplayName <String>] [-SendEmail] [-DomainController <Fqdn>]
3130
[-WhatIf] [-Confirm] [<CommonParameters>]
@@ -34,8 +33,7 @@ Set-CsOnlineDialInConferencingUser [-Identity] <UserIdParameter> [-BridgeId <Gui
3433
### TenantDomainParams
3534
```
3635
Set-CsOnlineDialInConferencingUser [-Identity] <UserIdParameter> [-BridgeId <Guid>]
37-
[-BridgeName <String>] -TenantDomain <String> [-ConferenceId <Int32>] [-ResetConferenceId]
38-
[-ServiceNumber <String>] [-TollFreeServiceNumber <String>] [-AllowPSTNOnlyMeetings <Boolean>] [-Force]
36+
[-BridgeName <String>] [-TenantDomain <String>] [-ServiceNumber <String>] [-TollFreeServiceNumber <String>] [-AllowPSTNOnlyMeetings <Boolean>] [-Force]
3937
[-ResetLeaderPin] [-AllowTollFreeDialIn <Boolean>] [-SendEmailToAddress <String>]
4038
[-SendEmailFromAddress <String>] [-SendEmailFromDisplayName <String>] [-SendEmail] [-DomainController <Fqdn>]
4139
[-WhatIf] [-Confirm] [<CommonParameters>]
@@ -50,18 +48,18 @@ The cmdlet will verify that the correct license is assigned to the user.
5048

5149
### -------------------------- Example 1 --------------------------
5250
```
53-
Set-CsOnlineDialInConferencingUser -Identity "Ken Meyers" -ConferenceId 3542699 -ResetLeaderPin -ServiceNumber 14255037265
51+
Set-CsOnlineDialInConferencingUser -Identity "Ken Meyers" -ResetLeaderPin -ServiceNumber 14255037265
5452
```
5553

56-
This example shows how to set a ConferenceId for a user, reset the meeting leader's PIN and set the audio conferencing provider default meeting phone number.
54+
This example shows how to reset the meeting leader's PIN and set the audio conferencing provider default meeting phone number.
5755

5856

5957
### -------------------------- Example 2 --------------------------
6058
```
61-
Set-CsOnlineDialInConferencingUser -Identity "Ken Meyers" -BridgeName "Conference Bridge" -ConferenceId 3542699
59+
Set-CsOnlineDialInConferencingUser -Identity "Ken Meyers" -BridgeName "Conference Bridge"
6260
```
6361

64-
This example sets a user's ConferenceId and conference bridge assignment.
62+
This example sets a user's conference bridge assignment.
6563

6664

6765
## PARAMETERS
@@ -153,31 +151,6 @@ Accept pipeline input: False
153151
Accept wildcard characters: False
154152
```
155153
156-
### -ConferenceId
157-
Specifies the ConferenceId that will be used by the user for dial-in meetings.
158-
The cmdlet will fail if:
159-
160-
The ConferenceId is already being used in the bridge where the user is assigned, or to which the user would be assigned.
161-
162-
The ConferenceId doesn't meet the ConferenceId format requirements.
163-
164-
ConferenceId and ResetConferenceId are mutually exclusive.
165-
When ConferenceId is specified the new ConferenceId will be assigned to the user.
166-
When ResetConferenceId is specified, the user will get an auto-generated ConferenceId.
167-
168-
```yaml
169-
Type: Int32
170-
Parameter Sets: (All)
171-
Aliases: Passcode
172-
Applicable: Skype for Business Online
173-
174-
Required: False
175-
Position: Named
176-
Default value: None
177-
Accept pipeline input: False
178-
Accept wildcard characters: False
179-
```
180-
181154
### -Confirm
182155
The Confirm switch causes the command to pause processing and requires confirmation to proceed.
183156
@@ -235,28 +208,6 @@ Accept pipeline input: False
235208
Accept wildcard characters: False
236209
```
237210

238-
### -ResetConferenceId
239-
Specifies whether to reset the ConferenceId for meetings that the user is organizing.
240-
If specified, the meetings using the old ConferenceId will fail.
241-
The user will have to reschedule his existing meetings, or run the meeting migration tool.
242-
243-
ConferenceId and ResetConferenceId are mutually exclusive.
244-
When ConferenceId is specified the new ConferenceId will be assigned to the user.
245-
When ResetConferenceId is specified, the user will get an auto-generated ConferenceId.
246-
247-
```yaml
248-
Type: SwitchParameter
249-
Parameter Sets: (All)
250-
Aliases: ResetPasscode
251-
Applicable: Skype for Business Online
252-
253-
Required: False
254-
Position: Named
255-
Default value: None
256-
Accept pipeline input: False
257-
Accept wildcard characters: False
258-
```
259-
260211
### -ResetLeaderPin
261212
Specifies whether to reset the meeting organizer or leaders PIN for meetings.
262213

spmt/docfx.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
"overwrite": [],
6767
"externalReference": [],
6868
"globalMetadata": {
69+
"uhfHeaderId": "MSDocsHeader-M365-IT",
6970
"author": "serdarsoysal",
7071
"ms.author": "serdars",
7172
"manager": "serdars",

0 commit comments

Comments
 (0)