vCenter Server | Unable to convert vNIC of a VM
Sometimes it happens that VM's vNIC is not giving you an option to upgrade\change from E1000 to VMXNET3. You can use below powershell command to do so-
$VC = read-host "Enter VC FQDN\IP"
$VM = read-host "Enter VM Name"
Connect-VIServer $VC$VM = read-host "Enter VM Name"
get-vm $VM | Get-NetworkAdapter | set-networkadapter -type vmxnet3 -confirm:$false
Thank you,
Team vCloudNotes
0 comments:
Post a comment