Syntax
Remove-NetworkAdapter [-NetworkAdapter] <NetworkAdapter[]> [-Confirm] [-WhatIf] [<CommonParameters>]Related Commands
Online VersionDetailed Description
This cmdlet removes the virtual network adapters from their locations.Parameters
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
NetworkAdapter | NetworkAdapter[] | Specifies the virtual network adapters 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 | |
WhatIf | SwitchParameter | Indicates that the cmdlet is run only to display the changes that would be made and actually no objects are modified. | false | False |
Return Type
NoneNotes
Examples
-------------------------- Example 1 --------------------------
$nic = Get-NetworkAdapter -VM VM Remove-NetworkAdapter -NetworkAdapter $nic
Removes the network adapter of the VM virtual machine.