Skip to content

Commit

Permalink
Merge pull request #5025 from FabienTschanz/fix/antivirus-parameter-d…
Browse files Browse the repository at this point in the history
…efinition

IntuneAntivirusPolicyWindows10 - Fix invalid parameter definition
  • Loading branch information
NikCharlebois committed Sep 9, 2024
2 parents ebf2730 + 1915b11 commit df8cd06
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

* AADPasswordRuleSettings
* Initial release
* IntuneAntivirusPolicyWindows10SettingCatalog
* Fixes an issue with invalid parameter definition.
FIXES [#5015](https://github.com/microsoft/Microsoft365DSC/issues/5015)
* SPOAccessControlSettings
* Added support for property EnableRestrictedAccessControl.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@ function Get-TargetResource
[System.int32]
$avgcpuloadfactor,

[Parameter]
[Parameter()]
[System.Int32]
$archivemaxdepth,

[Parameter]
[Parameter()]
[System.Int32]
$archivemaxsize,

Expand Down Expand Up @@ -601,11 +601,11 @@ function Set-TargetResource
[System.int32]
$avgcpuloadfactor,

[Parameter]
[Parameter()]
[System.Int32]
$archivemaxdepth,

[Parameter]
[Parameter()]
[System.Int32]
$archivemaxsize,

Expand Down Expand Up @@ -1095,11 +1095,11 @@ function Test-TargetResource
[System.int32]
$avgcpuloadfactor,

[Parameter]
[Parameter()]
[System.Int32]
$archivemaxdepth,

[Parameter]
[Parameter()]
[System.Int32]
$archivemaxsize,

Expand Down

0 comments on commit df8cd06

Please sign in to comment.