VMware vSphere

 View Only
  • 1.  how to check if the VM has thin or thick disk mode ?

    Posted Jul 18, 2015 07:22 PM

    hi,

    I want to make sure some of the VMs installed in ESXi 5.5 if they are thin or thick provisioned,

    can someone guide me please ?



  • 2.  RE: how to check if the VM has thin or thick disk mode ?

    Posted Jul 18, 2015 08:24 PM

    There are several options available. You can e.g. run RVTools and check the "Thin" coulumn in the vDisk tab, or simply open the Datastore Browser and check the VM's file sizes. For thin provisioned virtual disks you'll see the Provisioned Size in addition to the Size column.

    André



  • 3.  RE: how to check if the VM has thin or thick disk mode ?

    Posted Jul 19, 2015 07:03 AM

    you can also check this easily by going in vSphere Web Client (if your host is managed by vCenter)

    select your Host in Host and Cluster inventory -> Related Objects -> Virtual machines tab

    this is where it will list out all the VMs in your ESXi host, along with their Actual and Provisioned Size parameters, if you see both the columns reporting same size, that means it's Thick provisioned vdisk vm. if actual size is less than provisioned size, than it's thin provisioned vdisk vm.



  • 4.  RE: how to check if the VM has thin or thick disk mode ?

    Posted Jul 19, 2015 10:06 AM

    you can simply see this from edit setting option on the VM,

    if you want to view it for all Virtual machine at a slot .. use RVtools



  • 5.  RE: how to check if the VM has thin or thick disk mode ?

    Posted Jul 21, 2015 03:46 PM

    There is always the PowerCLI way also if you need to check many VMs. Something like this:

    foreach ($vm in get-vm) { "{0} disk is {1}" -f $vm.Name,$vm.HardDisks.StorageFormat}



  • 6.  RE: how to check if the VM has thin or thick disk mode ?

    Posted Jul 21, 2015 04:58 PM

    Login to the datacenter and get all the VM list using powercli command . iterate all the VM and run Get-HardDisk - vSphere PowerCLI Cmdlets Reference command with option.