Skip to content

Commit

Permalink
Merge branch 'Dev' into fix/TeamsComplianceRecordingPolicy
Browse files Browse the repository at this point in the history
  • Loading branch information
sandrola authored Oct 6, 2023
2 parents 4aedebb + 57abaff commit 106fc70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

* TeamsComplianceREcordingPolicy
* FIXES [[#3712](https://github.com/microsoft/Microsoft365DSC/issues/3712)]
* EXODistributionGroup
* Fixes the export of group membership to use Identity.

# 1.23.1004.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ function Get-TargetResource
if ($null -ne $Script:exportedInstances -and $Script:ExportMode)
{
$distributionGroup = $Script:exportedInstances | Where-Object -FilterScript {$_.Identity -eq $Identity}
$distributionGroupMembers = Get-DistributionGroupMember $Name -ErrorAction Stop -ResultSize Unlimited
$distributionGroupMembers = Get-DistributionGroupMember -Identity $Identity -ErrorAction Stop -ResultSize Unlimited
}
else
{
Expand Down

0 comments on commit 106fc70

Please sign in to comment.