Skip to content

Backup and Revert

Eric Jenkins edited this page Aug 20, 2021 · 5 revisions

Documentation

Applies to: PowerStig 4.10 or later

Functionality was added to include the ability to Backup system STIG settings to CSV and Revert to those settings if needed. The product will backup and revert most settings, but there a small number that will not revert, due to limitations with the our resources.

Steps to use new functionality

  1. Install the latest version of PowerSTIG (4.10.0 or newer)
  2. Backup STIG settings based on a target STIG
    Backup-StigSettings -StigName "WindowsServer-2019-MS-2.2.xml"
  1. Compile your PowerSTIG Configuration
<#
    Use the embedded STIG data with default range values to apply the most recent STIG settings.
    In this example, the composite resource gets the highest 2012 R2 member server STIG version
    file it can find locally and applies it to the server. The composite resource merges in the
    default values for any settings that have a valid range.
#>
configuration Example
{
    param
    (
        [parameter()]
        [string]
        $NodeName = 'localhost'
    )

    Import-DscResource -ModuleName PowerStig

    Node $NodeName
    {
        WindowsServer BaseLine
        {
            OsVersion   = '2019'
            OsRole      = 'MS'
        }
    }
}

Example
  1. Apply your PowerSTIG Configuration
Start-DscConfiguration .\Example -w -v -f
  1. Revert your system state to the PowerSTIG Backup
Restore-StigSettings -StigName "WindowsServer-2019-MS-2.2.xml"
Clone this wiki locally