From cc704059fed31b78e406413e609793b8e072cfde Mon Sep 17 00:00:00 2001 From: salbeck-sit Date: Thu, 21 Nov 2024 13:01:47 +0100 Subject: [PATCH 1/2] add required info to rturned results from Get-TargetResource --- .../MSFT_TeamsMeetingPolicy/MSFT_TeamsMeetingPolicy.psm1 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Modules/Microsoft365DSC/DSCResources/MSFT_TeamsMeetingPolicy/MSFT_TeamsMeetingPolicy.psm1 b/Modules/Microsoft365DSC/DSCResources/MSFT_TeamsMeetingPolicy/MSFT_TeamsMeetingPolicy.psm1 index 3f2224c6af..d23686aa96 100644 --- a/Modules/Microsoft365DSC/DSCResources/MSFT_TeamsMeetingPolicy/MSFT_TeamsMeetingPolicy.psm1 +++ b/Modules/Microsoft365DSC/DSCResources/MSFT_TeamsMeetingPolicy/MSFT_TeamsMeetingPolicy.psm1 @@ -473,6 +473,12 @@ function Get-TargetResource TeamsCameraFarEndPTZMode = $policy.TeamsCameraFarEndPTZMode WhoCanRegister = $policy.WhoCanRegister Ensure = 'Present' + Credential = $Credential + ApplicationId = $ApplicationId + TenantId = $TenantId + CertificateThumbprint = $CertificateThumbprint + ManagedIdentity = $ManagedIdentity.IsPresent + AccessTokens = $AccessTokens } } catch From 91b1e399bfd580e0afdc6f78103f727f750d3af1 Mon Sep 17 00:00:00 2001 From: salbeck-sit Date: Thu, 21 Nov 2024 13:07:06 +0100 Subject: [PATCH 2/2] updated changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c48ff3231..5a853f9d85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -78,6 +78,8 @@ * Initial release. * SCPolicyConfig * Fixed an issue extracting empty groups properties. +* TeamsMeetingPolicy + * FIXES #5442(https://github.com/microsoft/Microsoft365DSC/issues/5442) * TeamsUpdateManagementPolicy * Added conversion of the UpdateTimeOfDay parameter to the local culture format so that the comparison will work consistently.