Here is a PowerCLI script that lists the datastore space utilization: Connect to vCenter server Connect-VIServer -Server -User -Password Get all the datastores in vCenter $datastores = Get-Datastore Loop through each datastore foreach ($datastore in $datastores) {# Get the capacity and free space of the datastore$capacity = $datastore.CapacityGB$freeSpace = $datastore.FreeSpaceGB # Calculate the used space … Continue reading PowerCLI script to list datastore space utilization
Category: VMware
PowerShell script to list VMs on ESXi host.
Here is a PowerShell script to list the virtual machines (VMs) on an ESXi host: # Connect to the ESXi host Connect-VIServer -Server <ESXi_host_name> # Get a list of all VMs on the ESXi host $VMs = Get-VM # Loop through each VM and display its name and power state foreach ($VM in … Continue reading PowerShell script to list VMs on ESXi host.
How to Install ESXi 8?
To install ESXi 8, follow these steps: Download the ESXi ISO file from the VMware website. Burn the ISO file to a CD or USB drive. (for installing ESXi in a VM, you can directly mount the ISO) Boot the server from the CD/USB drive. Press Enter to install ESXi. Accept the End User License … Continue reading How to Install ESXi 8?
Uncovering virtual networking Part-9: IOChain Framework
The IOChain is a group of functions that provides connectivity between virtual ports and the virtual switch. It also provides the capability to insert functions into the network data-path regardless of the switch type used i.e. Standard Switch (vSS) or Distributed Switch (vDS). A virtual port has two IOChains based on the direction i.e. to … Continue reading Uncovering virtual networking Part-9: IOChain Framework
vSphere 7 Update 1 Major changes.
With the release of vSphere update 1, there is major shift in the supported compute maximums as summarised in table below. vSphere 7vSphere 7 Update 1Virtual CPUs per VM256768Memory per VM6 TB24 TBCPUs per host768768Memory per host16 TB24 TBHosts per cluster6496 With vCenter Server 7.0 Update 1, scalability for vSphere Lifecycle Manager operations with ESXi hosts and … Continue reading vSphere 7 Update 1 Major changes.
AppInfo plugin in VMware Tools 11.x
https://youtu.be/ZzjpyuK7aB4 AppInfo plugin in VMware Tools 11 enables the collection of the running application processes within a Guest OS and publishes that information to VM guestInfo Property called as guestinfo.appinfo. For each application running inside the guest, the name and version information is captured and published by the plugin. The appInfo plugin collects the information in every 30 minutes … Continue reading AppInfo plugin in VMware Tools 11.x
vRA 8.x Placement Policies
In this article, we will discuss about placement policy options in vRealize Automation 8.x. The placement policy helps vRA to determine hosts for deployments within the specified cloud zone. At the time of creation of a new cloud zone, as shown in image below, the wizard prompts for policy option selection for placement of workloads … Continue reading vRA 8.x Placement Policies