OverRideMaintenanceWindow

OverRideMaintenanceWindow

Used when you want a specific package to ignore the defined maintenance window in config.psd1 and process any actions needed for the defined package in the package configuration.

@{
    'laps' = @{
        Name                      = 'laps'
        Ensure                    = 'Present'
        OverRideMaintenanceWindow = $true
    }
}

Last updated

Was this helpful?