Skip to content
Eric Jenkins edited this page Sep 15, 2023 · 3 revisions

Chrome

A composite DSC resource to manage the Chrome STIG settings

Requirements

Google Chrome installation

Parameters

TODO

Examples

Example 1

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
Clone this wiki locally