Skip to content

Commit 37d29e7

Browse files
authored
Merge pull request #1135 from Ren-Roros-Digital/GlobalMeetingPolicy
Fix Teams Global Meeting Policy StateIsCorrect
2 parents f777132 + a9c6f1b commit 37d29e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Modules/CIPPCore/Public/Standards/Invoke-CIPPStandardTeamsGlobalMeetingPolicy.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ Function Invoke-CIPPStandardTeamsGlobalMeetingPolicy {
3838
$StateIsCorrect = ($CurrentState.AllowAnonymousUsersToJoinMeeting -eq $false) -and
3939
($CurrentState.AllowAnonymousUsersToStartMeeting -eq $false) -and
4040
($CurrentState.AutoAdmittedUsers -eq 'EveryoneInCompanyExcludingGuests') -and
41-
($CurrentState.AllowPSTNUsersToBypassLobby -eq $false)
42-
($CurrentState.MeetingChatEnabledType -eq 'EnabledExceptAnonymous')
43-
($CurrentState.DesignatedPresenterRoleMode -eq $Settings.DesignatedPresenterRoleMode)
41+
($CurrentState.AllowPSTNUsersToBypassLobby -eq $false) -and
42+
($CurrentState.MeetingChatEnabledType -eq 'EnabledExceptAnonymous') -and
43+
($CurrentState.DesignatedPresenterRoleMode -eq $Settings.DesignatedPresenterRoleMode) -and
4444
($CurrentState.AllowExternalParticipantGiveRequestControl -eq $false)
4545

4646
if ($Settings.remediate -eq $true) {

0 commit comments

Comments
 (0)