top of page

How to change VM NIC Type to VMXNET3 without replacing MAC Address?

Steps:

- Create Snapshot to the VM server

- Run this command to check the current NIC Type - Get-VM VMNAME | get-networkadapter

- Run this command to change the NIC Type - Get-VM VMNAME | get-networkadapter | set-networkadapter -type VMXNET3 ( In this example we have Flexible NIC Type and we are about to change it to VMXNET3 )



Comments


bottom of page