Skip to content
Open
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
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
* Fixed issue retrieving existing rule where the Id parameter was incorrectly provided.
* AADUser
* Added new permission requirement `User.EnableDisableAccount.All` for enabling / disabling accounts.
* EXOIRMConfiguration
* Fixed an issue where the `LicensingLocation` property was not exported correctly.
FIXES [#6644](https://github.com/microsoft/Microsoft365DSC/issues/6644)
* ODSettings
* Fixed an issue where exporting `DomainGuids` would throw because it is a GUID type.
FIXES [#6615](https://github.com/microsoft/Microsoft365DSC/issues/6615)
Expand All @@ -19,9 +22,9 @@
* M365DSCUtil
* Added custom post processing to `Test-M365DSCTargetResource`.
* IntuneDeviceConfigurationHealthMonitoringConfigurationPolicyWindows10
* Fixed a breaking issue where the resource failed with `ModelValidationFailure` due to property casing mismatch after Microsoft Graph SDK v2.10+. Updated to use camelCase property names to align with current Graph schema.
* Fixed a breaking issue where the resource failed with `ModelValidationFailure` due to property casing mismatch after Microsoft Graph SDK v2.10+. Updated to use camelCase property names to align with current Graph schema.
* IntuneSettingCatalogCustomPolicyWindows10
* Fixed issue where roleScopeTagIds was sent as null instead of array, causing BadRequest (400) during policy update.
* Fixed issue where roleScopeTagIds was sent as null instead of array, causing BadRequest (400) during policy update.
* MISC
* Centralized more resource testing to the testing function.
* DEPENDENCIES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ function Get-TargetResource
$LicensingLocationValue = $null
if ($IRMConfiguration.LicensingLocation)
{
$LicensingLocationValue = $IRMConfiguration.LicensingLocation.ToString()
$LicensingLocationValue = [System.String[]]$IRMConfiguration.LicensingLocation.OriginalString
}

$result = @{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ Describe -Name $Global:DscHelper.DescribeHeader -Fixture {
Identity = 'Test Config'
InternalLicensingEnabled = $True
JournalReportDecryptionEnabled = $True
LicensingLocation = 'https://contoso.com/_wmcs/licensing'
LicensingLocation = @{
AbsolutePath = '/_wmcs/licensing'
OriginalString = 'https://contoso.com/_wmcs/licensing'
IdnHost = 'contoso.com'
}
RejectIfRecipientHasNoRights = $False
SearchEnabled = $True
SimplifiedClientAccessDoNotForwardDisabled = $False
Expand Down