Skip to content

Commit

Permalink
Merge pull request #3678 from jeffreycloudlife/Dev
Browse files Browse the repository at this point in the history
Added 'Defender Update Controls' in IntuneAntivirusPolicyWindows10SettingCatalog
  • Loading branch information
ykuijs authored Sep 13, 2023
2 parents e2b74e2 + dd8584f commit bc1fad8
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
* IntuneAppProtectionPolicyAndroid
* Added support for 'RequireClass3Biometrics' parameter
* Added support for 'RequirePinAfterBiometricChange' parameter
* IntuneAntivirusPolicyWindows10SettingCatalog
* Added support for 'engineupdateschannel' parameter
* Added support for 'platformupdateschannel' parameter
* Added support for 'securityintelligenceupdateschannel' parameter
* M365DSCRuleEvaluation
* Initial Release.
* O365OrgSettings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,21 @@ function Get-TargetResource
[System.String]
$puaprotection,

[Parameter()]
[ValidateSet('0', '2', '3', '4', '5', '6')]
[System.String]
$engineupdateschannel,

[Parameter()]
[ValidateSet('0', '2', '3', '4', '5', '6')]
[System.String]
$platformupdateschannel,

[Parameter()]
[ValidateSet('0', '4', '5')]
[System.String]
$securityintelligenceupdateschannel,

[Parameter()]
[ValidateSet('0', '1', '2')]
[System.String]
Expand Down Expand Up @@ -676,6 +691,21 @@ function Set-TargetResource
[System.String]
$puaprotection,

[Parameter()]
[ValidateSet('0', '2', '3', '4', '5', '6')]
[System.String]
$engineupdateschannel,

[Parameter()]
[ValidateSet('0', '2', '3', '4', '5', '6')]
[System.String]
$platformupdateschannel,

[Parameter()]
[ValidateSet('0', '4', '5')]
[System.String]
$securityintelligenceupdateschannel,

[Parameter()]
[ValidateSet('0', '1', '2')]
[System.String]
Expand Down Expand Up @@ -1097,6 +1127,21 @@ function Test-TargetResource
[System.String]
$puaprotection,

[Parameter()]
[ValidateSet('0', '2', '3', '4', '5', '6')]
[System.String]
$engineupdateschannel,

[Parameter()]
[ValidateSet('0', '2', '3', '4', '5', '6')]
[System.String]
$platformupdateschannel,

[Parameter()]
[ValidateSet('0', '4', '5')]
[System.String]
$securityintelligenceupdateschannel,

[Parameter()]
[ValidateSet('0', '1', '2')]
[System.String]
Expand Down
Binary file not shown.

0 comments on commit bc1fad8

Please sign in to comment.