VMware

Deploy VCSA 6.5 with CLI

Steps to deploy VCSA 6.5 with CLI Download the vCenter Appliance 6.5 ISO file and extract it All the template to install, upgrade & migrate are in D:\vcsa-cli-installer\templates\ and we are going to modify the D:\vcsa-cli-installer\templates\install\embedded_vCSA_on_ESXi.json file to install the VCSA 6.5 in a single ESXi 6.5 host in this lab Modify the parameters according …

Deploy VCSA 6.5 with CLI Read More »

Install PowerShell Core with PowerCLI on ubuntu 18.04

Steps to install PowerShell Core with PowerCLI on ubuntu 18.04 Switch to root and install PowerShell Core #Switch to root su – # Download the Microsoft repository GPG keys wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb # Register the Microsoft repository GPG keys sudo dpkg -i packages-microsoft-prod.deb # Update the list of products sudo apt-get update # Install PowerShell …

Install PowerShell Core with PowerCLI on ubuntu 18.04 Read More »

Sample Preventive Maintenance Reports with PowerCLI

Refer to the list of Sample Preventive Maintenance Reports with PowerCLI Connect to vCenter with PowerCLI #Import VMware Module Import-Module VMware.VimAutomation.Core $vCenter = "10.253.24.16" $User = "[email protected]" $Password = "P@ssw0rd" Connect-VIServer -Server $vCenter -User $User -Password $Password -WarningAction SilentlyContinue To get hardware inventory for all VMware ESXi host $VMHosts = Get-VMHost Foreach ($VMHost in $VMHosts) …

Sample Preventive Maintenance Reports with PowerCLI Read More »

Scroll to Top