Control settings that can be configured for the Sitecore Install framework.
This topic covers the optional settings that may be applied when running the
Sitecore Install framework.
{
"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
.
{
"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
.
{
"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
.