3 Chrome
Eric Jenkins редактировал(а) эту страницу 2023-09-15 12:00:58 -04:00

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