Skip to content

Commit d22f86c

Browse files
Update Get-CsOnlineDialInConferencingUser.md
Remove unsupported input parameters
1 parent 325e11c commit d22f86c

File tree

1 file changed

+2
-183
lines changed

1 file changed

+2
-183
lines changed

teams/teams-ps/teams/Get-CsOnlineDialInConferencingUser.md

Lines changed: 2 additions & 183 deletions
Original file line numberDiff line numberDiff line change
@@ -18,29 +18,14 @@ Use the `Get-CsOnlineDialInConferencingUser` cmdlet to view the properties and s
1818
## SYNTAX
1919

2020
```
21-
Get-CsOnlineDialInConferencingUser [-BridgeName <String>] [-ServiceNumber <String>] [-TenantDomain <String>]
22-
[-LdapFilter <String>] [[-Identity] <UserIdParameter>] [-Tenant <Guid>] [-BridgeId <Guid>] [-ResultSize <Int32>]
23-
[-DomainController <Fqdn>] [-Force] [<CommonParameters>]
21+
Get-CsOnlineDialInConferencingUser [[-Identity] <UserIdParameter>] [-ResultSize <Int32>]
2422
```
2523

2624
## DESCRIPTION
2725
This cmdlet will only return users that have been enabled for audio conferencing using Microsoft as the audio conferencing provider.
2826
Users that are enabled for audio conferencing using a third-party audio conferencing provider won't be returned.
2927
If there are no users in the organization that have been enabled for audio conferencing, then the cmdlet will return no results.
3028

31-
The see a list of users with conferencing providers other than Microsoft use the Get-CsUserAcp cmdlet.
32-
33-
**NOTE**: In the Teams PowerShell Module version 3.0 or later, the following input parameters have been deprecated for TeamsOnly customers (removed or very low usage):
34-
35-
- BridgeId
36-
- BridgeName
37-
- DomainController
38-
- Force
39-
- LdapFilter
40-
- ServiceNumber
41-
- TenantDomain
42-
- Common Parameters
43-
4429
## EXAMPLES
4530

4631
### -------------------------- Example 1 --------------------------
@@ -52,48 +37,9 @@ This example uses the User Principal Name (UPN) to retrieve the BridgeID and Ser
5237

5338
## PARAMETERS
5439

55-
### -BridgeId
56-
57-
*This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.
58-
59-
Specifies the globally-unique identifier (GUID) for the audio conferencing bridge.
60-
61-
```yaml
62-
Type: Guid
63-
Parameter Sets: (All)
64-
Aliases:
65-
applicable: Microsoft Teams
66-
67-
Required: False
68-
Position: Named
69-
Default value: None
70-
Accept pipeline input: False
71-
Accept wildcard characters: False
72-
```
73-
74-
### -BridgeName
75-
76-
*This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.
77-
78-
Specifies the name for the audio conferencing bridge.
79-
80-
```yaml
81-
Type: String
82-
Parameter Sets: (All)
83-
Aliases:
84-
applicable: Microsoft Teams
85-
86-
Required: False
87-
Position: Named
88-
Default value: None
89-
Accept pipeline input: False
90-
Accept wildcard characters: False
91-
```
92-
9340
### -Identity
9441
Specifies the user to retrieve.
95-
The user can be specified by using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer); and, 4) the user's Active Directory display name (for example, Ken Myer).
96-
You can also reference a user account by using the user's Active Directory distinguished name.
42+
A user identity can be specified by using one of the formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's object id.
9743

9844
```yaml
9945
Type: UserIdParameter
@@ -108,89 +54,6 @@ Accept pipeline input: False
10854
Accept wildcard characters: False
10955
```
11056
111-
### -ServiceNumber
112-
113-
*This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.
114-
115-
Specifies a service number to serve as a filter for the returned user collection.
116-
Only users who have been assigned the specified number will be returned.
117-
The service number can be specified in the following formats: E.164 number, +\<E.164 number\> and tel:\<E.164 number\>.
118-
119-
```yaml
120-
Type: String
121-
Parameter Sets: (All)
122-
Aliases:
123-
applicable: Microsoft Teams
124-
125-
Required: False
126-
Position: Named
127-
Default value: None
128-
Accept pipeline input: False
129-
Accept wildcard characters: False
130-
```
131-
132-
### -DomainController
133-
134-
*This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.
135-
136-
This parameter is reserved for internal Microsoft use.
137-
138-
```yaml
139-
Type: Fqdn
140-
Parameter Sets: (All)
141-
Aliases: DC
142-
applicable: Microsoft Teams
143-
144-
Required: False
145-
Position: Named
146-
Default value: None
147-
Accept pipeline input: False
148-
Accept wildcard characters: False
149-
```
150-
151-
### -Force
152-
153-
*This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.
154-
155-
The Force switch specifies whether to suppress warning and confirmation messages.
156-
It can be useful in scripting to suppress interactive prompts.
157-
If the Force switch isn't provided in the command, you're prompted for administrative input if required.
158-
159-
```yaml
160-
Type: SwitchParameter
161-
Parameter Sets: (All)
162-
Aliases:
163-
applicable: Microsoft Teams
164-
165-
Required: False
166-
Position: Named
167-
Default value: None
168-
Accept pipeline input: False
169-
Accept wildcard characters: False
170-
```
171-
172-
### -LdapFilter
173-
174-
*This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.
175-
176-
Enables you to limit the returned data by filtering on generic Active Directory attributes (that is, attributes that are not specific to Skype for Business Server 2015).
177-
For example, you can limit returned data to users who work in a specific department, or users who have a specified manager or job title.
178-
The LdapFilter parameter uses the LDAP query language when creating filters.
179-
For example, a filter that returns only users who work in the city of Redmond would look like this: "l=Redmond", with "l" (a lowercase L) representing the Active Directory attribute (locality); "=" representing the comparison operator (equal to); and "Redmond" representing the filter value.
180-
181-
```yaml
182-
Type: String
183-
Parameter Sets: (All)
184-
Aliases:
185-
applicable: Microsoft Teams
186-
187-
Required: False
188-
Position: Named
189-
Default value: None
190-
Accept pipeline input: False
191-
Accept wildcard characters: False
192-
```
193-
19457
### -ResultSize
19558
Enables you to limit the number of records returned by the cmdlet.
19659
For example, to return seven users (regardless of the number of users that are in your forest) include the ResultSize parameter and set the parameter value to 7.
@@ -212,50 +75,6 @@ Accept pipeline input: False
21275
Accept wildcard characters: False
21376
```
21477
215-
### -Tenant
216-
217-
*This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.
218-
219-
NOTE: This parameter is reserved for internal Microsoft use.
220-
221-
Specifies the globally unique identifier (GUID) of your Skype for Business Online tenant account.
222-
For example: -Tenant "38aad667-af54-4397-aaa7-e94c79ec2308".
223-
You can find your tenant ID by running this command:
224-
225-
`Get-CsTenant | Select-Object DisplayName, TenantID`
226-
227-
```yaml
228-
Type: Guid
229-
Parameter Sets: (All)
230-
Aliases:
231-
applicable: Microsoft Teams
232-
233-
Required: False
234-
Position: Named
235-
Default value: None
236-
Accept pipeline input: False
237-
Accept wildcard characters: False
238-
```
239-
240-
### -TenantDomain
241-
242-
*This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.
243-
244-
This parameter is reserved for internal Microsoft use.
245-
246-
```yaml
247-
Type: Object
248-
Parameter Sets: (All)
249-
Aliases:
250-
applicable: Microsoft Teams
251-
252-
Required: False
253-
Position: Named
254-
Default value: None
255-
Accept pipeline input: False
256-
Accept wildcard characters: False
257-
```
258-
25978
### CommonParameters
26079
26180
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).

0 commit comments

Comments
 (0)