Skip to content

Commit 3063a16

Browse files
authored
Merge branch 'master' into master
2 parents 69f73fb + 14b0969 commit 3063a16

File tree

3 files changed

+45
-8
lines changed

3 files changed

+45
-8
lines changed

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

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ ms.reviewer:
1919
```
2020
New-CsTeamsMeetingPolicy [-Tenant <Guid>] [-Description <String>]
2121
[-AllowChannelMeetingScheduling <Boolean>] [-AllowMeetNow <Boolean>] [-AllowPrivateMeetNow <Boolean>] [-AllowIPVideo <Boolean>] [-IPAudioMode <String>] [-IPVideoMode <String>]
22-
[-AllowAnonymousUsersToDialOut <Boolean>] [-AllowAnonymousUsersToStartMeeting <Boolean>]
22+
[-AllowAnonymousUsersToDialOut <Boolean>]
23+
[-AllowAnonymousUsersToJoinMeeting <Boolean>] [-AllowAnonymousUsersToStartMeeting <Boolean>]
2324
[-AllowPrivateMeetingScheduling <Boolean>] [-AutoAdmittedUsers <String>] [-AllowCloudRecording <Boolean>]
2425
[-AllowOutlookAddIn <Boolean>] [-AllowPowerPointSharing <Boolean>]
2526
[-AllowParticipantGiveRequestControl <Boolean>] [-AllowExternalParticipantGiveRequestControl <Boolean>]
@@ -82,6 +83,25 @@ Accept pipeline input: False
8283
Accept wildcard characters: False
8384
```
8485
86+
### -AllowAnonymousUsersToJoinMeeting
87+
88+
> [!NOTE]
89+
> The experience for users is dependent on both the value of -DisableAnonymousJoin (the old tenant-wide setting) and -AllowAnonymousUsersToJoinMeeting (the new per-organizer policy). Please check https://docs.microsoft.com/microsoftteams/meeting-policies-participants-and-guests for details.
90+
91+
Determines whether anonymous users can join the meetings that impacted users organize. Set this to TRUE to allow anonymous users to join a meeting. Set this to FALSE to prohibit them from joining a meeting.
92+
93+
```yaml
94+
Type: Boolean
95+
Parameter Sets: (All)
96+
Aliases:
97+
98+
Required: False
99+
Position: Named
100+
Default value: True
101+
Accept pipeline input: False
102+
Accept wildcard characters: False
103+
```
104+
85105
### -AllowAnonymousUsersToStartMeeting
86106
Determines whether anonymous users can initiate a meeting. Set this to TRUE to allow anonymous users to initiate a meeting. Set this to FALSE to prohibit them from initiating a meeting
87107

skype/skype-ps/skype/Set-CsMeetingConfiguration.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,7 @@ Accept wildcard characters: False
125125
```
126126
127127
### -AdmitAnonymousUsersByDefault
128-
Determines whether meetings will, by default, allow attendance by anonymous users (that is, by unauthenticated users) or by federated users (authenticated users from other tenants).
129-
Set this value to True if you would like new meetings to allow for attendance by anonymous users or federated users by default.
130-
Set this value to False if you would prefer that, by default, new meetings do not allow for attendance by anonymous users or federated users. When set to False, anonymous and federated users will be placed in the lobby of a meeting when trying to join it. After being placed in the lobby, they can be admitted by any presenter in the meeting.
131-
When this value is changed, the change will only apply to new meetings and it will not applied to meetings already scheduled.
132-
The default value is True.
128+
Determines whether meetings will, by default, allow attendance by anonymous users (that is, unauthenticated users). Set this value to True if you would like new meetings to allow for attendance by anonymous users by default. Set this value to False if you would prefer that, by default, new meetings do not allow for attendance by anonymous users. The default value is True.
133129
134130
```yaml
135131
Type: Boolean

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

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ The `CsTeamsMeetingPolicy` cmdlets enable administrators to control the type of
2323
Set-CsTeamsMeetingPolicy [-Tenant <Guid>] [-Description <String>]
2424
[-AllowChannelMeetingScheduling <Boolean>] [-AllowCartCaptionsScheduling <string>] [-AllowMeetNow <Boolean>] [-AllowPrivateMeetNow <Boolean>]
2525
[-MeetingChatEnabledType <String>] [-LiveCaptionsEnabledType <String>] [-AllowIPVideo <Boolean>] [-IPAudioMode <String>] [-IPVideoMode <String>]
26-
[-AllowAnonymousUsersToDialOut <Boolean>] [-AllowAnonymousUsersToStartMeeting <Boolean>]
26+
[-AllowAnonymousUsersToDialOut <Boolean>]
27+
[-AllowAnonymousUsersToJoinMeeting <Boolean>] [-AllowAnonymousUsersToStartMeeting <Boolean>]
2728
[-AllowPrivateMeetingScheduling <Boolean>] [-AutoAdmittedUsers <String>] [-AllowCloudRecording <Boolean>]
2829
[-AllowOutlookAddIn <Boolean>] [-AllowPowerPointSharing <Boolean>]
2930
[-AllowParticipantGiveRequestControl <Boolean>] [-AllowExternalParticipantGiveRequestControl <Boolean>]
@@ -46,7 +47,8 @@ Set-CsTeamsMeetingPolicy [-Tenant <Guid>] [-Description <String>]
4647
Set-CsTeamsMeetingPolicy [-Tenant <Guid>] [-Description <String>]
4748
[-AllowChannelMeetingScheduling <Boolean>] [-AllowCartCaptionsScheduling <string>] [-AllowMeetNow <Boolean>] [-AllowPrivateMeetNow <Boolean>]
4849
[-MeetingChatEnabledType <String>] [-LiveCaptionsEnabledType <String>] [-AllowIPVideo <Boolean>] [-IPAudioMode <String>] [-IPVideoMode <String>]
49-
[-AllowAnonymousUsersToDialOut <Boolean>] [-AllowAnonymousUsersToStartMeeting <Boolean>]
50+
[-AllowAnonymousUsersToDialOut <Boolean>]
51+
[-AllowAnonymousUsersToJoinMeeting <Boolean>] [-AllowAnonymousUsersToStartMeeting <Boolean>]
5052
[-AllowPrivateMeetingScheduling <Boolean>] [-AutoAdmittedUsers <String>] [-AllowCloudRecording <Boolean>]
5153
[-AllowOutlookAddIn <Boolean>] [-AllowPowerPointSharing <Boolean>]
5254
[-AllowParticipantGiveRequestControl <Boolean>] [-AllowExternalParticipantGiveRequestControl <Boolean>]
@@ -93,6 +95,25 @@ All other policy properties will use the existing values.
9395

9496
## PARAMETERS
9597

98+
### -AllowAnonymousUsersToJoinMeeting
99+
100+
> [!NOTE]
101+
> The experience for users is dependent on both the value of -DisableAnonymousJoin (the old tenant-wide setting) and -AllowAnonymousUsersToJoinMeeting (the new per-organizer policy). Please check https://docs.microsoft.com/microsoftteams/meeting-policies-participants-and-guests for details.
102+
103+
Determines whether anonymous users can join the meetings that impacted users organize. Set this to TRUE to allow anonymous users to join a meeting. Set this to FALSE to prohibit them from joining a meeting.
104+
105+
```yaml
106+
Type: Boolean
107+
Parameter Sets: (All)
108+
Aliases:
109+
110+
Required: False
111+
Position: Named
112+
Default value: True
113+
Accept pipeline input: False
114+
Accept wildcard characters: False
115+
```
116+
96117
### -AllowAnonymousUsersToStartMeeting
97118
Determines whether anonymous users can initiate a meeting. Set this to TRUE to allow anonymous users to initiate a meeting. Set this to FALSE to prohibit them from initiating a meeting.
98119

0 commit comments

Comments
 (0)