In the Nutanix cluster base brick of each of the Nutanix cluster is Nutanix node. Each and every node in the cluster having memory, CPU, RAM and storage . Each node…
How to Generate Data Store Utilization Report Cluster Wise by using Script
Use below script to generate data store utilization report cluster wise : $report = @() foreach($cluster in Get-Cluster){ Get-VMHost -Location $cluster | Get-Datastore | %{ $info = “”…
vSAN 7 – Native File Services
what is Native File Service in vSAN 7 ? Native file services for vSAN helps ease the burden of management when vSAN environments require file level services. Instead of using a legacy physical storage array, or deploying VMs…
VMware Cloud On AWS (PowerCLI )
Requirements It requires PowerCLI 11.0.0 (specifically, the VMware.VimAutomation.Vmc module) and Microsoft Windows. Instruction Step 1 – Installing the module Option A – automatic installation from PowerShell Gallery Execute:Install-Module -Name VMware.VimAutomation.VmcPreview -RequiredVersion 1.0.0.11171858 Option…
How to Upgrade VCF (VMware Cloud Foundation) deployment from 3.5.1 to 3.7
About VMware Cloud Foundation (VCF) : (VCF) is VMware’s unified SDDC platform for the hybrid cloud and it’s based on VMware’s compute, storage, and network virtualization technologies to deliver a native integrated software stack that…
How to update VCF (VMware Cloud Foundation ) from 3.5 to 3.5.1
what is VMware Cloud Foundation ? VMware Cloud Foundation is the hybrid cloud platform for managing VMs and orchestrating containers, built on full-stack hyperconverged infrastructure (HCI) technology.Increase enterprise agility and flexibility with the…
PowerCLI Snippets Tutorial
Configuration Import/Export vCenter Roles #Export Role $role = Get-VIRole -Name “MyRole” |Get-VIPrivilege; $role.id -join “,” #Import Role (Use the output from the command above) New-VIRole -Name “MyRole” -Privilege (Get-VIPrivilege -Id…
Generic vSphere Commands for Troubleshooting .
what is vSphere command ? The vSphere Command-Line Interface (vSphere CLI) command set allows you to run common system administration commands against ESXi systems from any machine with network access…
Space reclamation of VMFS 5 Datastores by using esxcli
what is VMFS datastore ? Create VMFS datastore. VMFS datastores are used as repositories for virtual machines’ files. They can be set up on any SCSI-based storage device that the…
PowerCLI Error: “The underlying connection was closed: An unexpected error occurred on a send.”
Attempting to use VMware vSphere PowerCLI’s Connect-VIServer to a vCenter instance fails with error : “The underlying connection was closed: An unexpected error occurred on a send.” So today I…