Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TeamsMeetingPolicy - fix #5442 #5443

Merged
merged 2 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading