Remove-VTpm

This cmdlet removes the specified vTPM devices.

Syntax

-VTpm  <VTpm[]>
[-RunAsync]
[CommonParameters]

Parameters

Required Parameter Name Type Position Features Description
required
VTpm
VTpm[] named
  • pipeline
  • Specifies the vTPM devices that you want to remove.
    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.

    Output

    Examples


    Example 1

    $myVm = Get-VM MyVM
    Get-VTpm -VM $myVm | Remove-VTpm

    Removes the vTPM device from the virtual machine named 'MyVM'.

    Example 2

    $vtpm = Get-VTpm -VM "MyVM"
    Remove-VTpm -VTpm $vtpm

    Removes the vTPM device from the virtual machine named "MyVM".

    Related Commands

    Feedback

    Was this page helpful?