Skip to content

Firefox

Michael Rasmussen edited this page Jan 29, 2026 · 5 revisions

FireFox

A composite DSC resource to manage the FireFox STIG settings

Requirements

Mozilla Firefox installation

Parameters

FireFox [String] #ResourceName
{
    [DependsOn               = [String[]]]
    [PsDscRunAsCredential    = [PSCredential]]
    [InstallDirectory        = [String]]
    [StigVersion             = [Version]]
    [Exception               = [Hashtable]]
    [OrgSettings             = [Object]]
    [SkipRule                = [String[]]]
    [SkipRuleType            = [String[]]]
    [SkipRuleSeverity        = [String[]]]
}

Examples

Example 1

In this example, the FireFox STIG is processed by the composite resource

Configuration Example
{
    param
    (
        [parameter()]
        [string]
        $NodeName = 'localhost'
    )

    Import-DscResource -ModuleName PowerStig

    Node $NodeName
    {
        FireFox FireFoxSettings
        {
            StigVersion = '4.29'
            InstallDirectory = 'C:\Program Files\Mozilla Firefox'
        }
    }
}

Example

Clone this wiki locally