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

Add Intune Firewall Policy for Windows 10 #5056

Merged
merged 10 commits into from
Oct 2, 2024
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

# UNRELEASED

* IntuneAppCategory
* Initial release.
* AADApplication
* Added AppRoles
* Added AuthenticationBehavior
Expand Down Expand Up @@ -60,17 +58,28 @@
* IntuneAntivirusPolicyWindows10SettingCatalog
* Fixes an issue with invalid parameter definition.
FIXES [#5015](https://github.com/microsoft/Microsoft365DSC/issues/5015)
* IntuneAppCategory
* Initial release.
* IntuneDeviceCompliancePolicyWindows10
* Fixes an issue where the property `ValidOperatingSystemBuildRanges` was
not exported properly.
FIXES [#5030](https://github.com/microsoft/Microsoft365DSC/issues/5030)
* IntuneDeviceConfigurationSharedMultiDevicePolicyWindows10
* Add missing `AccessTokens` parameter to `Export-TargetResource`
FIXES [#5034](https://github.com/microsoft/Microsoft365DSC/issues/5034)
* IntuneFirewallPolicyWindows10
* Initial release
FIXES [#3033](https://github.com/microsoft/Microsoft365DSC/issues/3033)
* IntuneSettingCatalogCustomPolicyWindows10
* Update export logic to target more specific policy types.
* Prevent thrown exception to be caught by exception handler.
FIXES [#5088](https://github.com/microsoft/Microsoft365DSC/issues/5088)
* M365DSCDRGUtil
* Add support for more complex Intune Settings Catalog properties
* Update handling of `Update-IntuneDeviceConfigurationPolicy` to throw on error
FIXES [#5055](https://github.com/microsoft/Microsoft365DSC/issues/5055)
* M365DSCResourceGenerator
* Update Intune resource generation for the Settings Catalog.
* O365ExternalConnection
* Initial release.
* SCDeviceConditionalAccessRule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,10 +266,7 @@ function Get-TargetResource
{
$getValue = Get-MgBetaDeviceManagementConfigurationPolicy `
-Filter "Name eq '$DisplayName'" `
-ErrorAction SilentlyContinue | Where-Object `
-FilterScript {
$_.AdditionalProperties.'@odata.type' -eq "#microsoft.graph.DeviceManagementConfigurationPolicy"
}
-ErrorAction SilentlyContinue
}
}
#endregion
Expand Down
Loading
Loading