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

Release 1.24.1113.1 #5397

Merged
merged 22 commits into from
Nov 13, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Corrected PR #5385
ykuijs committed Nov 13, 2024
commit b782989aa62e5983ac171dbecccaf49b22cd72cb
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -24,6 +24,10 @@
* IntuneAntivirusPolicyWindows10SettingCatalog
* Update properties to be upper-case.
Fixes [#5373](https://github.com/microsoft/Microsoft365DSC/issues/5373)
* IntuneDeviceConfigurationCustomPolicyWindows10
* Fixed issue where `Value`, from `OmaSettings`, could not be compared
correctly if it was boolean and set to `$False`
FIXES [#5384](https://github.com/microsoft/Microsoft365DSC/issues/5384)
* IntuneEndpointDetectionAndResponsePolicyWindows10
* Remove changed property name from export.
FIXES [#5300](https://github.com/microsoft/Microsoft365DSC/issues/5300)
Original file line number Diff line number Diff line change
@@ -125,7 +125,6 @@ function Get-TargetResource

if ($currentomaSettings.isEncrypted -eq $true)
{
write-verbose ("IsEncrypted = true -- $($currentomaSettings.displayName)")
$SecretReferenceValueId = $currentomaSettings.secretReferenceValueId
$OmaSettingPlainTextValue = Get-OmaSettingPlainTextValue -SecretReferenceValueId $SecretReferenceValueId
if (![String]::IsNullOrEmpty($OmaSettingPlainTextValue))
@@ -144,7 +143,7 @@ function Get-TargetResource
$myomaSettings.Add('IsEncrypted', $currentomaSettings.isEncrypted)
$myomaSettings.Add('OmaUri', $currentomaSettings.omaUri)
$myomaSettings.Add('FileName', $currentomaSettings.fileName)
$myomaSettings.Add('Value', $currentomaSettings.value)
$myomaSettings.Add('Value', [System.String]$currentomaSettings.value)
if ($currentomaSettings.'@odata.type' -eq '#microsoft.graph.omaSettingInteger')
{
$myomaSettings.Add('IsReadOnly', $currentomaSettings.isReadOnly)