Skip to content

Add-DefaultConfigurationSource

SYNOPSIS

Adds a configuration source with explicitly specified values.

SYNTAX

Add-DefaultConfigurationSource [-InputObject] <PSObject[]> [<CommonParameters>]

DESCRIPTION

Adds a configuration source with explicitly specified values. This can be useful for specifying fallback values that may not be present in a user's specific configuration.

EXAMPLES

Example 1

PS C:\> {{ Add example code here }}

{{ Add example description here }}

PARAMETERS

-InputObject

Specifies configuration data.

Type: System.Management.Automation.PSObject[]
Parameter Sets: (All)
Aliases:

Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

OUTPUTS

None.

NOTES

Back to top