PowerCLI Reference

Remove-VTpm

Synopsis

This cmdlet removes the specified VTpm devices.

Syntax

Remove-VTpm [-VTpm] <VTpm[]> [-WhatIf] [-Confirm] [-RunAsync] [<CommonParameters>]

Related Commands

Get-VTpm
New-VTpm
Set-VTpm
Get-VTpmCertificate
Get-VTpmCSR

Detailed Description

This cmdlet removes the specified VTpm devices.

Parameters

NameTypeDescriptionRequired?Pipeline InputDefault Value
VTpmVTpm[]Specifies the VTpm devices that you want to remove.trueTrue (ByValue)
ConfirmSwitchParameterIf the value is $true, indicates that the cmdlet asks for confirmation before running; if the value is $false, the cmdlet runs without asking for user confirmation.falseFalse
RunAsyncSwitchParameterIndicates 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.falseFalse
WhatIfSwitchParameterIndicates that the cmdlet is run only to display the changes that would be made and actually no objects are removed.falseFalse

Return Type

System.Void

Notes

Examples

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

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

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

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

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

Removes the VTpm device from VM named "MyVM"


Copyright © VMware, Inc. All rights reserved.