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

Update PowerSTIG To Use AuditPolicyDsc Version 1.4.0.0 #716

Merged
merged 1 commit into from
Aug 18, 2020
Merged
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* Update PowerSTIG to successfully parse/apply Windows Server 2019 Instance Ver. 1 Rel. 5: [#683](https://github.com/microsoft/PowerStig/issues/683)
* Update PowerSTIG to successfully parse/apply Windows 2016 DC/MS Version 1, Rev 12: [#681](https://github.com/microsoft/PowerStig/issues/681)
* Update PowerSTIG to successfully parse/apply Windows 2012 R2 MS Version 2, Rev 19: [#676](https://github.com/microsoft/PowerStig/issues/676)
* Update PowerSTIG To Use AuditPolicyDsc version 1.4.0.0 : [#715](https://github.com/microsoft/PowerStig/issues/715)
* Update PowerSTIG To Use xWebAdministration version 3.2.0 : [#713](https://github.com/microsoft/PowerStig/issues/713)
* Update PowerSTIG To Use xDnsServer version 1.16.0.0: [#695](https://github.com/microsoft/PowerStig/issues/695)
* Release Process Update: Ensure the nuget package uses explicit DSC Resource Module Versions: [#667](https://github.com/microsoft/PowerStig/issues/667)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ configuration WindowsClient
Import-DscResource -ModuleName AccessControlDsc -ModuleVersion 1.4.1
. "$resourcePath\windows.AccessControl.ps1"

Import-DscResource -ModuleName AuditPolicyDsc -ModuleVersion 1.2.0.0
Import-DscResource -ModuleName AuditPolicyDsc -ModuleVersion 1.4.0.0
. "$resourcePath\windows.AuditPolicySubcategory.ps1"

Import-DscResource -ModuleName SecurityPolicyDsc -ModuleVersion 2.4.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ configuration WindowsServer
Import-DscResource -ModuleName AccessControlDsc -ModuleVersion 1.4.1
. "$resourcePath\windows.AccessControl.ps1"

Import-DscResource -ModuleName AuditPolicyDsc -ModuleVersion 1.2.0.0
Import-DscResource -ModuleName AuditPolicyDsc -ModuleVersion 1.4.0.0
. "$resourcePath\windows.AuditPolicySubcategory.ps1"

Import-DscResource -ModuleName GPRegistryPolicyDsc -ModuleVersion 1.2.0
Expand Down
2 changes: 1 addition & 1 deletion source/PowerStig.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ CLRVersion = '4.0'

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(
@{ModuleName = 'AuditPolicyDsc'; ModuleVersion = '1.2.0.0'},
@{ModuleName = 'AuditPolicyDsc'; ModuleVersion = '1.4.0.0'},
@{ModuleName = 'AuditSystemDsc'; ModuleVersion = '1.1.0'},
@{ModuleName = 'AccessControlDsc'; ModuleVersion = '1.4.1'},
@{ModuleName = 'ComputerManagementDsc'; ModuleVersion = '6.2.0.0'},
Expand Down