scripts

Remove-ParameterDefault.ps1

SYNOPSIS

Removes a value that would have been used for a parameter if none was specified, if one existed.

SYNTAX

Remove-ParameterDefault.ps1 [-CommandName] <String> [-ParameterName] <String> [-Scope <String>]
 [-ProgressAction <ActionPreference>] [<CommonParameters>]

DESCRIPTION

EXAMPLES

EXAMPLE 1

Remove-ParameterDefault.ps1 epcsv nti -Scope Global

Establishes that the -NoTypeInformation param of the Export-Csv cmdlet will revert to false (as established by the cmdlet) if not otherwise specified, globally for the PowerShell session.

EXAMPLE 2

Remove-ParameterDefault.ps1 Select-Xml Namespace

Removes any namespaces used by Select-Xml when none are given explicitly.

PARAMETERS

-CommandName

The name of a cmdlet, function, script, or alias to remove a default parameter value from.

Type: String
Parameter Sets: (All)
Aliases: CmdletName

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

-ParameterName

The name or alias of the parameter to remove a default value from.

Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 2
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-Scope

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

-ProgressAction

Type: ActionPreference
Parameter Sets: (All)
Aliases: proga

Required: False
Position: Named
Default value: None
Accept pipeline input: False
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

An object with a ParameterName property that identifies a property to remove a default for.

OUTPUTS

NOTES

Add-ScopeLevel.ps1

Stop-ThrowError.ps1

Get-Command

about_Scopes