Assigns a value to use for the specified cmdlet parameter to use when one is not specified.
Set-ParameterDefault.ps1 [-CommandName] <String> [-ParameterName] <String> [-Value] <Object> [-Scope <String>]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
Set-ParameterDefault.ps1 epcsv nti $true -Scope Global
Establishes that the -NoTypeInformation param of the Export-Csv cmdlet will be true if not otherwise specified, globally for the PowerShell session.
Set-ParameterDefault.ps1 Select-Xml Namespace @{svg = 'http://www.w3.org/2000/svg'}
Uses only the SVG namespace for Select-Xml when none are given explicitly.
The name of a cmdlet, function, script, or alias to assign a default parameter value to.
Type: String
Parameter Sets: (All)
Aliases: CmdletName
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The name or alias of the parameter to assign a default value to.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The value to assign as a default.
Type: Object
Parameter Sets: (All)
Aliases:
Required: True
Position: 3
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
The scope of this default.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: Local
Accept pipeline input: False
Accept wildcard characters: False
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.