Skip to content

Commit

Permalink
Fix Teams Global Meeting Policy StateIsCorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
OfficialEsco committed Oct 4, 2024
1 parent 75e14fa commit 39b86ad
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ Function Invoke-CIPPStandardTeamsGlobalMeetingPolicy {
$StateIsCorrect = ($CurrentState.AllowAnonymousUsersToJoinMeeting -eq $false) -and
($CurrentState.AllowAnonymousUsersToStartMeeting -eq $false) -and
($CurrentState.AutoAdmittedUsers -eq 'EveryoneInCompanyExcludingGuests') -and
($CurrentState.AllowPSTNUsersToBypassLobby -eq $false)
($CurrentState.MeetingChatEnabledType -eq 'EnabledExceptAnonymous')
($CurrentState.DesignatedPresenterRoleMode -eq $Settings.DesignatedPresenterRoleMode)
($CurrentState.AllowPSTNUsersToBypassLobby -eq $false) -and
($CurrentState.MeetingChatEnabledType -eq 'EnabledExceptAnonymous') -and
($CurrentState.DesignatedPresenterRoleMode -eq $Settings.DesignatedPresenterRoleMode) -and
($CurrentState.AllowExternalParticipantGiveRequestControl -eq $false)

if ($Settings.remediate -eq $true) {
Expand Down

0 comments on commit 39b86ad

Please sign in to comment.