diff --git a/CHANGELOG.md b/CHANGELOG.md index 971ded4238..c726c79da1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,13 @@ * AADRoleEligibilityScheduleRequest * Added support for groups assignment. FIXES [#3744](https://github.com/microsoft/Microsoft365DSC/issues/3744) - * EXODistributionGroup * Fixes the export of group membership to use Identity. +* TeamsUpgradeConfiguration + * Fixes an issue where the SfBMeetingJoinUx property wasn't properly updated. * DEPENDENCIES * Updated ExchangeOnlineManagement to version 3.4.0. - * Updated Micrsoft.Graph dependencies to version 2.7.0. + * Updated Microsoft.Graph dependencies to version 2.7.0. # 1.23.1004.1 diff --git a/Modules/Microsoft365DSC/DSCResources/MSFT_TeamsUpgradeConfiguration/MSFT_TeamsUpgradeConfiguration.psm1 b/Modules/Microsoft365DSC/DSCResources/MSFT_TeamsUpgradeConfiguration/MSFT_TeamsUpgradeConfiguration.psm1 index 5eeb71e1ba..74d1f38382 100644 --- a/Modules/Microsoft365DSC/DSCResources/MSFT_TeamsUpgradeConfiguration/MSFT_TeamsUpgradeConfiguration.psm1 +++ b/Modules/Microsoft365DSC/DSCResources/MSFT_TeamsUpgradeConfiguration/MSFT_TeamsUpgradeConfiguration.psm1 @@ -141,7 +141,8 @@ function Set-TargetResource $SetParameters.Remove('ApplicationId') | Out-Null $SetParameters.Remove('TenantId') | Out-Null $SetParameters.Remove('CertificateThumbprint') | Out-Null - + $SetParameters.Add("Identity", "Global") + Write-Verbose -Message "Updating with Values: $(Convert-M365DscHashtableToString -Hashtable $SetParameters)" Set-CsTeamsUpgradeConfiguration @SetParameters }