Skip to content

Commit 14b0969

Browse files
authored
Merge pull request MicrosoftDocs#8627 from Delan60/patch-1
Add -AllowAnonymousUsersToJoinMeeting param
2 parents ccdca2d + a2c6029 commit 14b0969

File tree

2 files changed

+44
-3
lines changed

2 files changed

+44
-3
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-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)