Remove-VDITemplateLicenseKey

NAME

Remove-VDITemplateLicenseKey

SYNOPSIS

Removes the licenses key info from a RAS Template.

SYNTAX

Remove-VDITemplateLicenseKey [-Id] <uint> -Key <string> [<CommonParameters>]

Remove-VDITemplateLicenseKey [-InputObject] <VDITemplate> -Key <string> [<CommonParameters>]

DESCRIPTION

The Remove-VDITemplateLicenseKey cmdlet is used to remove a license key information from a RAS Template.

PARAMETERS


-Id <uint>
The ID of the RAS Template to modify.

        Required?                    true
        Position?                    0
        Default value                0
        Accept pipeline input?       false
        Accept wildcard characters?  false

-InputObject <VDITemplate>
An object of type VDITemplate representing a RAS Template.

The object is obtained using the Get-VDITemplate cmdlet.

        Required?                    true
        Position?                    0
        Default value                
        Accept pipeline input?       true (ByValue)
        Accept wildcard characters?  false

-Key <string>
The license key to remove.

        Required?                    true
        Position?                    named
        Default value                
        Accept pipeline input?       false
        Accept wildcard characters?  false

<CommonParameters>
        This cmdlet supports the common parameters: Verbose, Debug,
        ErrorAction, ErrorVariable, WarningAction, WarningVariable,
        OutBuffer, PipelineVariable, and OutVariable. For more information, see 
        about_CommonParameters documentation. 

INPUTS

PSAdmin.VDITemplate

OUTPUTS

-none-

EXAMPLES


---------- EXAMPLE 1 ----------

Remove-VDITemplateLicenseKey -Id 1 -Key abcd1234

Removes the specified license key details from the RAS Template specified by ID.

---------- EXAMPLE 2 ----------

Remove-VDITemplateLicenseKey -InputObject $Template -Key abcd1234

Removes the specified license key details from the RAS Template specified by the $Template variable.

---------- EXAMPLE 3 ----------

Get-VDITemplate -Id 1 | Remove-VDITemplateLicenseKey -Key abcd1234

Removes the specified license key details from the RAS Template obtained from the pipeline output.

RELATED LINKS