-
Notifications
You must be signed in to change notification settings - Fork 114
Chrome
Eric Jenkins edited this page Sep 15, 2023
·
3 revisions
A composite DSC resource to manage the Chrome STIG settings
Google Chrome installation
TODO
In this example, the Chrome STIG is processed by the composite resource
Configuration Example
{
param
(
[parameter()]
[string]
$NodeName = 'localhost'
)
Import-DscResource -ModuleName PowerStig
Node $NodeName
{
Chrome ChromeSettings
{
}
}
}
Example