Skip to content

Commit bd211fa

Browse files
authored
Merge pull request MicrosoftDocs#1720 from islubin/master
Updates for CVI cmdlet documentation
2 parents 8319eed + ab5084f commit bd211fa

6 files changed

+937
-0
lines changed
Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
3+
applicable: Skype for Business Online
4+
Module Name: Skype for Business Online
5+
title: Get-CsTeamsVideoInteropServicePolicy
6+
schema: 2.0.0
7+
---
8+
9+
# Get-CsTeamsVideoInteropServicePolicy
10+
11+
## SYNOPSIS
12+
13+
Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. You can use the TeamsVideoInteropServicePolicy cmdlets to enable Cloud Video Interop for particular users or for your entire organization.
14+
15+
## SYNTAX
16+
17+
### Identity (Default)
18+
```
19+
Get-CsTeamsVideoInteropServicePolicy [-Tenant <System.Guid>] [[-Identity] <XdsIdentity>] [-LocalStore]
20+
[<CommonParameters>]
21+
```
22+
23+
### Filter
24+
```
25+
Get-CsTeamsVideoInteropServicePolicy [-Tenant <System.Guid>] [-Filter <String>] [-LocalStore]
26+
[<CommonParameters>]
27+
```
28+
29+
## DESCRIPTION
30+
Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. You can use the TeamsVideoInteropServicePolicy cmdlets to enable Cloud Video Interop for particular users or for your entire organization. Microsoft provides pre-constructed policies for each of our supported partners that allow you to designate which partner(s) to use for cloud video interop.
31+
32+
The Get-CsTeamsVideoInteropServicePolicy cmdlet allows you to identify the pre-constructed policies that you can use in your organization. You can assign this policy to one or more of your users leveraging the Grant-CsTeamsVideoInteropServicePolicy cmdlet.
33+
34+
## EXAMPLES
35+
36+
### Example 1
37+
```powershell
38+
PS C:\> Get-CsTeamsVideoInteropServicePolicy -Filter "*enabled*"
39+
```
40+
41+
This example returns all of the policies that have been pre-constructed for you to use when turning on Cloud Video Interop with one of our supported partners.
42+
43+
## PARAMETERS
44+
45+
### -Filter
46+
If you don't know what policies have been pre-constructed, you can use filter to identify all policies available. This is a regex string against the name (Identity) of the pre-constructed policies.
47+
48+
```yaml
49+
Type: String
50+
Parameter Sets: Filter
51+
Aliases:
52+
53+
Required: False
54+
Position: Named
55+
Default value: None
56+
Accept pipeline input: False
57+
Accept wildcard characters: False
58+
```
59+
60+
### -Identity
61+
Specify the known name of a policy that has been pre-constructed for you to use.
62+
63+
```yaml
64+
Type: XdsIdentity
65+
Parameter Sets: Identity
66+
Aliases:
67+
68+
Required: False
69+
Position: 1
70+
Default value: None
71+
Accept pipeline input: False
72+
Accept wildcard characters: False
73+
```
74+
75+
### -LocalStore
76+
Internal Microsoft use only.
77+
78+
```yaml
79+
Type: SwitchParameter
80+
Parameter Sets: (All)
81+
Aliases:
82+
83+
Required: False
84+
Position: Named
85+
Default value: None
86+
Accept pipeline input: False
87+
Accept wildcard characters: False
88+
```
89+
90+
### -Tenant
91+
Internal Microsoft use only.
92+
93+
```yaml
94+
Type: System.Guid
95+
Parameter Sets: (All)
96+
Aliases:
97+
98+
Required: False
99+
Position: Named
100+
Default value: None
101+
Accept pipeline input: False
102+
Accept wildcard characters: False
103+
```
104+
105+
### CommonParameters
106+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
107+
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
108+
109+
## INPUTS
110+
111+
### None
112+
113+
114+
## OUTPUTS
115+
116+
### System.Object
117+
118+
## NOTES
119+
120+
## RELATED LINKS
Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
3+
applicable: Skype for Business Online
4+
Module Name: Skype for Business Online
5+
title: Get-CsVideoInteropServiceProvider
6+
schema: 2.0.0
7+
---
8+
9+
# Get-CsVideoInteropServiceProvider
10+
11+
## SYNOPSIS
12+
Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. The CsVideoInteropServiceProvider cmdlets allow you to designate provider/tenant specific information about the connection to the provider.
13+
14+
15+
## SYNTAX
16+
17+
### Identity (Default)
18+
```
19+
Get-CsVideoInteropServiceProvider [-Tenant <System.Guid>] [[-Identity] <XdsGlobalRelativeIdentity>]
20+
[-LocalStore] [<CommonParameters>]
21+
```
22+
23+
### Filter
24+
```
25+
Get-CsVideoInteropServiceProvider [-Tenant <System.Guid>] [-Filter <String>] [-LocalStore] [<CommonParameters>]
26+
```
27+
28+
## DESCRIPTION
29+
Cloud Video Interop for Teams enables 3rd party VTC devices to be able to join Teams meetings. The CsVideoInteropServiceProvider cmdlets allow you to designate provider/tenant specific information about the connection to the provider.
30+
31+
## EXAMPLES
32+
33+
### Example 1
34+
```powershell
35+
PS C:\> Get-CsVideoInteropServiceProvider
36+
```
37+
38+
Get all of the providers that have been configured for use within the organization.
39+
40+
## PARAMETERS
41+
42+
### -Filter
43+
A regex string filter on the providers that have been set up for use within the organization.
44+
45+
```yaml
46+
Type: String
47+
Parameter Sets: Filter
48+
Aliases:
49+
50+
Required: False
51+
Position: Named
52+
Default value: None
53+
Accept pipeline input: False
54+
Accept wildcard characters: False
55+
```
56+
57+
### -Identity
58+
Retrieve the specific provider information by name if is known - returns only those providers that have already been set within the tenant.
59+
60+
```yaml
61+
Type: XdsGlobalRelativeIdentity
62+
Parameter Sets: Identity
63+
Aliases:
64+
65+
Required: False
66+
Position: 1
67+
Default value: None
68+
Accept pipeline input: False
69+
Accept wildcard characters: False
70+
```
71+
72+
### -LocalStore
73+
Internal Microsoft use only.
74+
75+
```yaml
76+
Type: SwitchParameter
77+
Parameter Sets: (All)
78+
Aliases:
79+
80+
Required: False
81+
Position: Named
82+
Default value: None
83+
Accept pipeline input: False
84+
Accept wildcard characters: False
85+
```
86+
87+
### -Tenant
88+
Internal Microsoft use only.
89+
90+
```yaml
91+
Type: System.Guid
92+
Parameter Sets: (All)
93+
Aliases:
94+
95+
Required: False
96+
Position: Named
97+
Default value: None
98+
Accept pipeline input: False
99+
Accept wildcard characters: False
100+
```
101+
102+
### CommonParameters
103+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
104+
For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
105+
106+
## INPUTS
107+
108+
### None
109+
110+
111+
## OUTPUTS
112+
113+
### System.Object
114+
115+
## NOTES
116+
117+
## RELATED LINKS

0 commit comments

Comments
 (0)