Skip to content

Commit 4353101

Browse files
committed
Updates for Guest meeting configuration
1 parent 7f03c94 commit 4353101

File tree

2 files changed

+326
-0
lines changed

2 files changed

+326
-0
lines changed
Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
3+
Module Name: Skype for Business Online
4+
online version:
5+
applicable: Skype for Business Online
6+
title: Get-CsTeamsGuestCallingConfiguration
7+
schema: 2.0.0
8+
---
9+
10+
# Get-CsTeamsGuestMeetingConfiguration
11+
12+
## SYNOPSIS
13+
14+
Designates what meeting features guests using Microsoft Teams will have available.
15+
16+
## SYNTAX
17+
18+
```
19+
Get-CsTeamsGuestMeetingConfiguration [-LocalStore] [[-Identity] <Object>] [-Tenant <Object>] [-Filter <Object>]
20+
[-AsJob]
21+
```
22+
23+
## DESCRIPTION
24+
25+
The TeamsGuestMeetingConfiguration designates which meeting features guests leveraging Microsoft Teams will have available. This configuration will apply to all guests utilizing Microsoft Teams. Use the Get-CsTeamsGuestMeetingConfiguration cmdlet to return what values are set for your organization.
26+
27+
## EXAMPLES
28+
29+
### Example 1
30+
```powershell
31+
PS C:\> Get-CsTeamsGuestMeetingConfiguration
32+
```
33+
34+
Returns the TeamsGuestMeetingConfiguration set in your organization.
35+
36+
## PARAMETERS
37+
38+
### -Filter
39+
Internal Microsoft use.
40+
41+
```yaml
42+
Type: Object
43+
Parameter Sets: (All)
44+
Aliases:
45+
46+
Required: False
47+
Position: Named
48+
Default value: None
49+
Accept pipeline input: False
50+
Accept wildcard characters: False
51+
```
52+
53+
### -Identity
54+
The only value accepted is Global
55+
56+
```yaml
57+
Type: Object
58+
Parameter Sets: (All)
59+
Aliases:
60+
61+
Required: False
62+
Position: 1
63+
Default value: None
64+
Accept pipeline input: False
65+
Accept wildcard characters: False
66+
```
67+
68+
### -LocalStore
69+
Internal Microsoft use
70+
71+
```yaml
72+
Type: SwitchParameter
73+
Parameter Sets: (All)
74+
Aliases:
75+
76+
Required: False
77+
Position: Named
78+
Default value: None
79+
Accept pipeline input: False
80+
Accept wildcard characters: False
81+
```
82+
83+
### -Tenant
84+
Internal Microsoft use
85+
86+
```yaml
87+
Type: Object
88+
Parameter Sets: (All)
89+
Aliases:
90+
91+
Required: False
92+
Position: Named
93+
Default value: None
94+
Accept pipeline input: False
95+
Accept wildcard characters: False
96+
```
97+
98+
### -AsJob
99+
Internal Microsoft use
100+
101+
```yaml
102+
Type: SwitchParameter
103+
Parameter Sets: (All)
104+
Aliases:
105+
106+
Required: False
107+
Position: Named
108+
Default value: None
109+
Accept pipeline input: False
110+
Accept wildcard characters: False
111+
```
112+
113+
## INPUTS
114+
115+
### None
116+
117+
118+
## OUTPUTS
119+
120+
### System.Object
121+
122+
## NOTES
123+
124+
## RELATED LINKS
Lines changed: 202 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,202 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
3+
Module Name: Skype for Business Online
4+
online version:
5+
applicable: Skype for Business Online
6+
title: Set-CsTeamsGuestMeetingConfiguration
7+
schema: 2.0.0
8+
---
9+
10+
# Set-CsTeamsGuestMeetingConfiguration
11+
12+
## SYNOPSIS
13+
14+
Designates what meeting features guests using Microsoft Teams will have available. Use this cmdlet to set the configuration.
15+
16+
## SYNTAX
17+
18+
```
19+
Set-CsTeamsGuestMeetingConfiguration [-WhatIf] [-ScreenSharingMode <Object>] [-AllowMeetNow <bool>]
20+
[-Confirm] [[-Identity] <Object>] [-Tenant <Object>] [-AllowIPVideo <bool>] [-Force] [-Instance <Object>]
21+
[-AsJob]
22+
```
23+
24+
## DESCRIPTION
25+
26+
The TeamsGuestMeetingConfiguration designates which meeting features guests leveraging Microsoft Teams will have available. This configuration will apply to all guests utilizing Microsoft Teams. Use the Set-CsTeamsGuestMeetingConfiguration cmdlet to designate what values are set for your organization.
27+
28+
## EXAMPLES
29+
30+
### Example 1
31+
```powershell
32+
PS C:\> Set-CsTeamsGuestMeetingConfiguration -Identity Global -AllowMeetNow $false -AllowIPVideo $false
33+
```
34+
35+
Disables Guests' usage of MeetNow and Video calling in the organization; all other values of the configuration are left as is.
36+
37+
## PARAMETERS
38+
39+
### -AllowIPVideo
40+
Determines whether video is enabled in  a user's meetings or calls. Set this to TRUE to allow guests to share their video. Set this to FALSE to prohibit guests from sharing their video
41+
42+
```yaml
43+
Type: Boolean
44+
Parameter Sets: (All)
45+
Aliases:
46+
47+
Required: False
48+
Position: Named
49+
Default value: None
50+
Accept pipeline input: False
51+
Accept wildcard characters: False
52+
```
53+
54+
### -AllowMeetNow
55+
Determines whether guests can start ad-hoc meetings. Set this to TRUE to allow guests to start ad-hoc meetings. Set this to FALSE to prohibit guests from starting ad-hoc meetings. 
56+
57+
58+
```yaml
59+
Type: Object
60+
Parameter Sets: (All)
61+
Aliases:
62+
63+
Required: False
64+
Position: Named
65+
Default value: None
66+
Accept pipeline input: False
67+
Accept wildcard characters: False
68+
```
69+
70+
### -Confirm
71+
Prompts you for confirmation before running the cmdlet.
72+
73+
```yaml
74+
Type: SwitchParameter
75+
Parameter Sets: (All)
76+
Aliases: cf
77+
78+
Required: False
79+
Position: Named
80+
Default value: None
81+
Accept pipeline input: False
82+
Accept wildcard characters: False
83+
```
84+
85+
### -Force
86+
Suppresses all non fatal errors.
87+
88+
```yaml
89+
Type: SwitchParameter
90+
Parameter Sets: (All)
91+
Aliases:
92+
93+
Required: False
94+
Position: Named
95+
Default value: None
96+
Accept pipeline input: False
97+
Accept wildcard characters: False
98+
```
99+
100+
### -Identity
101+
The only input allowed is "Global"
102+
103+
```yaml
104+
Type: Object
105+
Parameter Sets: (All)
106+
Aliases:
107+
108+
Required: False
109+
Position: 1
110+
Default value: None
111+
Accept pipeline input: False
112+
Accept wildcard characters: False
113+
```
114+
115+
### -Instance
116+
Pipe the existing configuration from a Get- call.
117+
118+
```yaml
119+
Type: Object
120+
Parameter Sets: (All)
121+
Aliases:
122+
123+
Required: False
124+
Position: Named
125+
Default value: None
126+
Accept pipeline input: False
127+
Accept wildcard characters: False
128+
```
129+
130+
### -ScreenSharingMode
131+
Determines the mode in which guests can share a screen in calls or meetings. Set this to SingleApplication to allow the user to share an  application at a given point in time. Set this to EntireScreen to allow the user to share anything on their screens. Set this to Disabled to prohibit the user from sharing their screens
132+
133+
```yaml
134+
Type: Object
135+
Parameter Sets: (All)
136+
Aliases:
137+
138+
Required: False
139+
Position: Named
140+
Default value: None
141+
Accept pipeline input: False
142+
Accept wildcard characters: False
143+
```
144+
145+
### -Tenant
146+
Internal Microsoft use
147+
148+
```yaml
149+
Type: Object
150+
Parameter Sets: (All)
151+
Aliases:
152+
153+
Required: False
154+
Position: Named
155+
Default value: None
156+
Accept pipeline input: False
157+
Accept wildcard characters: False
158+
```
159+
160+
### -WhatIf
161+
Shows what would happen if the cmdlet runs.
162+
The cmdlet is not run.
163+
164+
```yaml
165+
Type: SwitchParameter
166+
Parameter Sets: (All)
167+
Aliases: wi
168+
169+
Required: False
170+
Position: Named
171+
Default value: None
172+
Accept pipeline input: False
173+
Accept wildcard characters: False
174+
```
175+
176+
### -AsJob
177+
Internal Microsoft use
178+
179+
```yaml
180+
Type: SwitchParameter
181+
Parameter Sets: (All)
182+
Aliases:
183+
184+
Required: False
185+
Position: Named
186+
Default value: None
187+
Accept pipeline input: False
188+
Accept wildcard characters: False
189+
```
190+
191+
## INPUTS
192+
193+
### System.Management.Automation.PSObject
194+
195+
196+
## OUTPUTS
197+
198+
### System.Object
199+
200+
## NOTES
201+
202+
## RELATED LINKS

0 commit comments

Comments
 (0)