SitecoreInstallFramework_Settings

about_SitecoreInstallFramework_Settings

SHORT DESCRIPTION

Control settings that can be configured for the Sitecore Install framework.

LONG DESCRIPTION

This topic covers the optional settings that may be applied when running the
Sitecore Install framework.

EXAMPLES

InformationAction

{
    "Settings" : {
        "InformationAction" : "SilentlyContinue"
    }
}

The InformationAction may be set in a configuration file to control the action
that will be taken when content is logged to the information stream.

The setting accepts any [System.Management.Automation.ActionPreference]. The
default value is Continue.

The InformationAction setting may be overridden when calling
Install-SitecoreConfiguration.

WarningAction

{
    "Settings" : {
        "WarningAction" : "SilentlyContinue"
    }
}

The WarningAction may be set in a configuration file to control the action
that will be taken when content is logged to the warning stream.

The setting accepts any [System.Management.Automation.ActionPreference]. The
default value is Continue.

The WarningAction setting may be overridden when calling
Install-SitecoreConfiguration.

ErrorAction

{
    "Settings" : {
        "ErrorAction" : "Continue"
    }
}

The ErrorAction may be set in a configuration file to control the action
that will be taken when content is logged to the error stream.

The setting accepts any [System.Management.Automation.ActionPreference]. The
default value is Stop.

The ErrorAction setting may be overridden when calling
Install-SitecoreConfiguration.

SEE ALSO