How To Find VMs With Change Block Tracking (CBT) Enabled

IT Support Forum Forums Virtualization VMware vCenter General Discussion How To Find VMs With Change Block Tracking (CBT) Enabled

Viewing 0 reply threads
  • Author
    Posts
    • #698
      Webmaster
      Keymaster

      Do you need to find which VMs have Change Block Tracking (CBT) enabled and which have it disabled? Here’s a PowerShell commandlet that gives you a list of VMs with CBT enabled, run it on your VMware vCenter server:

      Get-VM | Where-Object{$_.ExtensionData.Config.ChangeTrackingEnabled -eq $true}

      To get a list of VMs with CBT disabled, change the commandlet to say false instead of true.

Viewing 0 reply threads
  • You must be logged in to reply to this topic.