Download NSX-T Appliance Very first, Need to download the NSX-T Unified Appliance OVA. You may need to login on https://my.vmware.com, then Navigate to the All Products Page https://my.vmware.com/group/vmware/downloads/#all_products Download VMware NSX-T…
VRealize Automation 8.2 deployment Step by Step
Deploy VRA 8.2 on VCenter 7 Appliances are inside the source – VRealize Life Cycle Manager. VRealize Identity Manager. VRealize Automation. VRealize Life Cycle Manager. This appliance is responsible for…
Desktop Hypervisor
What are Hypervisors? Hypervisor is piece of software that makes virtualization possible. That is abstracts guest machines & the operating system they run on actual hardware. Its create a virtualization…
How to create Nutanix cluster
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…