Set-Template

This cmdlet changes the name and the description of a virtual machine template according to the provided parameters. The cmdlet can convert the template to a virtual machine if the value of the ToVM parameter is $true.

Syntax

-Template  <Template[]>
[-Name  <String>]
[-RunAsync]
[-Server  <VIServer[]>]
[-ToVM]
[CommonParameters]

Parameters

Required Parameter Name Type Position Features Description
required
Template
Template[] named
  • wildcards
  • pipeline
  • Specifies the template whose properties you want to change.
    optional
    Name
    String named Specifies a new name for the template.
    optional
    RunAsync
    SwitchParameter named Indicates that the command returns immediately without waiting for the task to complete. In this mode, the output of the cmdlet is a Task object. For more information about the RunAsync parameter run "help About_RunAsync" in the VMware PowerCLI console.
    optional
    Server
    VIServer[] named
  • wildcards
  • Specifies the vCenter Server systems on which you want to run the cmdlet. If no value is provided or $null value is passed to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-VIServer.
    optional
    ToVM
    SwitchParameter named Indicates that the template is to be converted to a virtual machine.

    Output

    VMware.VimAutomation.ViCore.Types.V1.Inventory.Template

    Examples


    Example 1

    Set-Template -Template $template -Name Template2

    Renames the template saved in the $template variable to Template2.

    Example 2

    $vm = Set-Template -Template $template -ToVM

    Converts a template to a virtual machine.

    Related Commands

    Feedback

    Was this page helpful?