Skip to content
Menu
  • Home
  • vSAN
    • vSAN 7
  • vSphere
    • ESXi
    • vCenter
    • Generic vSphere Commands
  • Cloud Management
    • VCF (VMware Cloud Foundation)
    • vCloud Director
    • vRO
    • Cloud on AWS
    • VMware vRealize Suite Lifecycle Manager – 8.0
    • vRealize Log Insight
    • vRealize Network Insight
    • Hybrid Cloud Extension (HCX)
    • VMware Site Recovery Manager (SRM)
  • NSX/NSX-t
  • Nutanix
  • Power CLI
    • PowerCLI Snippets
  • VMware Horizon
  • Microsoft
    • Azure Cloud
      • Microsoft Azure Cloud and Services
      • Create Azure VMs ( PowerShell )
      • Create Azure VMs (Portal)
  • VOIP
  • Author
  • Contact

Category: Power CLI

PowerCLI command line .

How to Generate Data Store Utilization Report Cluster Wise by using Script

Posted on January 4, 2021January 4, 2021

Use below script to generate data store utilization report cluster wise : $report = @() foreach($cluster in Get-Cluster){     Get-VMHost -Location $cluster | Get-Datastore | %{         $info = “”…

Read More

VMware Cloud On AWS (PowerCLI )

Posted on November 29, 2020November 30, 2020

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…

Read More

PowerCLI Snippets Tutorial

Posted on June 24, 2020June 24, 2020

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…

Read More

Space reclamation of VMFS 5 Datastores by using esxcli

Posted on June 4, 2020

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…

Read More

PowerCLI Error: “The underlying connection was closed: An unexpected error occurred on a send.”

Posted on June 4, 2020

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…

Read More

Get WWPN of the hosts FiberChannel HBA

Posted on July 24, 2019

What is worldwide port number (WWPN) . A worldwide port number (WWPN) is unique identifier for each FC port of any Fibre Channel device. For server, we have a WWPN…

Read More

Virtual Machine’s Boot status (booting to the Guest OS or being forced to boot into BIOS ) by Power CLI sctipts .

Posted on July 24, 2019

Virtual Machine’s Boot status :   <# .NOTES **************************************** Created by: Rajiv Pandey Web URL: www.vthesis.wordpress.com **************************************** .DESCRIPTION It will display the VM’s boot status , either VM’s booting to…

Read More

ESXi host installation date via Power CLI scripts .

Posted on July 24, 2019

ESXi host installation date : <# .NOTES **************************************** Created by: Rajiv Pandey Web URL: www.vthesis.wordpress.com **************************************** .DESCRIPTION It will display the installation date of an ESXi host . #> Function…

Read More

Outdated VM-tools VM list with version by power CLI scripts .

Posted on July 24, 2019

VMware Tools ? VMware Tools is a suite of utilities that enhances the performance of the virtual machine’s guest operating system and improves management of the virtual machine. … You…

Read More

Get VM’s Cluster Host and Data Store Information with Powercli script

Posted on July 11, 2019

VM’s Cluster Host and Data Store Information with Powercli script : we can able to get the desired output . Get-VM -Name (Get-content c:\vmname.txt)| Select Name, @{N=”Cluster”;E={Get-Cluster -VM $_}}, @{N=”ESX…

Read More
  • 1
  • 2
  • 3
  • Next

Recent Posts

  • NSX-T Manager 3.x Installation .

    NSX-T Manager 3.x Installation .

  • VRealize Automation 8.2 deployment Step by Step

    VRealize Automation 8.2 deployment Step by Step

  • Desktop Hypervisor

    Desktop Hypervisor

  • How to create Nutanix cluster

    How to create Nutanix cluster

  • How to Generate Data Store Utilization Report Cluster Wise by using Script

    How to Generate Data Store Utilization Report Cluster Wise by using Script

  • vSAN 7 – Native File Services

    vSAN 7 – Native File Services

  • VMware Cloud On AWS (PowerCLI )

    VMware Cloud On AWS (PowerCLI )

  • How to Upgrade VCF (VMware Cloud Foundation)  deployment from 3.5.1 to 3.7

    How to Upgrade VCF (VMware Cloud Foundation) deployment from 3.5.1 to 3.7

  • How to update VCF (VMware Cloud Foundation ) from 3.5 to 3.5.1

    How to update VCF (VMware Cloud Foundation ) from 3.5 to 3.5.1

  • PowerCLI Snippets Tutorial

    PowerCLI Snippets Tutorial

Search Topic

©2023 | WordPress Theme by Superbthemes.com