Skip to content

Commit

Permalink
Merge branch 'Dev' into 5527-TeamsGroupPolicyAssignment-fix-bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sandrola committed Jan 14, 2025
2 parents 343c3ed + 28d4849 commit 233c1fc
Show file tree
Hide file tree
Showing 41 changed files with 5,496 additions and 39 deletions.
23 changes: 21 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

# UNRELEASED

* AADAuthenticationRequirement
* Filtered guests from the export, to prevent errors during export
FIXES [#5625](https://github.com/microsoft/Microsoft365DSC/issues/5625)
* AADGroupEligibilitySchedule
* New resource for Privileged Identity Management (PIM) for Groups
* AADNamingLocationPolicy
* Improved logging and fixed issue that caused creation of duplicate
locations with same name.
* EXOSmtpDaneInbound
* initial release
* IntuneVPNConfigurationPolicyAndroidWork
* Initial release

# 1.25.108.1

* AADAuthenticationRequirement
* Changed Export logic to extract instances from all users.
* AADOrganizationCertificateBasedAuthConfiguration
Expand All @@ -12,8 +27,12 @@
* DefenderDeviceAuthenticatedScanDefinition
* Fixed the Data Type export.
* MISC
* DEFENDER
* Added support for the UseBasicParsing paramter for REST calls.
* Added check to `New-M365DSCReportFromConfiguration` to make sure Windows
Remoting is enabled, which is required to convert the DSC config.
* Defender
* Added support for the UseBasicParsing parameter for REST calls.

# 1.24.1218.1

* AADApplication
* Added support for Oauth2PermissionScopes.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,9 @@ function Export-TargetResource

try
{
[array]$getValue = Get-MgUser -ErrorAction Stop -All | Where-Object -FilterScript { $null -ne $_.Id }
[array]$getValue = Get-MgUser -Filter "userType eq 'member'" -All -ErrorAction Stop | Where-Object -FilterScript {
$null -ne $_.Id -and $_.UserPrincipalName -notlike "*#EXT#*"
}

$i = 1
$dscContent = ''
Expand Down
Loading

0 comments on commit 233c1fc

Please sign in to comment.