vSphere PowerCLI Reference

Remove-VMHostNetworkAdapter

Synopsis

This cmdlet removes the specified host network adapters.

Syntax

Remove-VMHostNetworkAdapter [-Nic] <HostVirtualNic[]> [-WhatIf] [-Confirm] [<CommonParameters>]

Related Commands

Online version
New-VMHostNetworkAdapter
Set-VMHostNetworkAdapter

Detailed Description

This cmdlet removes the specified host network adapters.

Parameters

NameTypeDescriptionRequired?Pipeline InputDefault Value
NicHostVirtualNic[]Specifies the network adapters 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$true
WhatIfSwitchParameterIndicates that the cmdlet is run only to display the changes that would be made and actually no objects are modified.falsefalse

Return Type

None

Notes

Examples

-------------- Example 1 --------------

$network = Get-VMHostNetwork

Remove-VMHostNetworkAdapter $network.VirtualNic[0] -Confirm

Removes the first virtual network adapter of the host.


Copyright © 1998 - 2014 VMware, Inc. All rights reserved.