This Blog is to share our knowledge and expertise on Linux System Administration and VMware Administration

Tuesday, October 13, 2015

Powercli command for Changing networkadapter of required vms at time

#  Create a text file with list of vms that you want to change network adapter

$VMlist = Get-content C:\Users\ap_vn1651\Documents\VMlist.txt
Get-VM $VMlist | Get-NetworkAdapter | set-networkadapter -type vmxnet3 -confirm:$false

No comments:

Post a Comment