Syntax
Remove-VTpm [-VTpm] <VTpm[]> [-WhatIf] [-Confirm] [-RunAsync] [<CommonParameters>]Related Commands
Get-VTpmDetailed Description
This cmdlet removes the specified VTpm devices.Parameters
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
VTpm | VTpm[] | Specifies the VTpm devices that you want to remove. | true | True (ByValue) | |
Confirm | SwitchParameter | If 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. | false | False | |
RunAsync | SwitchParameter | 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. | false | False | |
WhatIf | SwitchParameter | Indicates that the cmdlet is run only to display the changes that would be made and actually no objects are removed. | false | False |
Return Type
System.VoidNotes
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"