VMware Cloud Community
kssvraju
Contributor
Contributor

Network settings at power on

Author : Ivanka Radkova

URL : http:////docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.vm_admin.doc/GUID-3719A0BE-4B4A-44...

Topic Name : Change the Virtual Machine Network Adapter Configuration

Publication Name : vSphere Virtual Machine Administration

Product/Version : VMware vSphere/7.0

Question :

How can we check network settings at power on for all vms in one go ?

0 Kudos
3 Replies
harry89
Enthusiast
Enthusiast

You can use powercli to achieve the necessary configuration

IT Professional: PowerCLI : Virtual Machine Network Adapter (Get info , Set & Config , Add / Remove ...

Harry
VCIX-DCV6.5 ,VCIX-NV6 , VCAP-CMA7
Mark answer as correct/helpful if it solves your query
0 Kudos
berndweyand
Expert
Expert

Get-VM | Get-NetworkAdapter | select @{N=’VMName’;E={$_.Parent}}, @{N=’NICType’;E={$_.Type}}, @{N=’StartConnected’;E={$_.ExtensionData.Connectable.StartConnected}}, @{N=’Connected’;E={$_.ExtensionData.Connectable.Connected}}

0 Kudos
scott28tt
VMware Employee
VMware Employee

Moderator: Thread moved to the PowerCLI area.


-------------------------------------------------------------------------------------------------------------------------------------------------------------

Although I am a VMware employee I contribute to VMware Communities voluntarily (ie. not in any official capacity)
VMware Training & Certification blog
0 Kudos