One or more VM disks have incorrect changed block tracking configuration.
Disk "Hard disk #" has incorrect changed block tracking configuration
One or more VM disks have incorrect changed block tracking configuration
Unable to access file since it is locked. An error occurred while consolidating disks. One of the disks in this virtual machine is already in use by a virtual machine or by a snapshot. (In this case, the files will be there and there will be no locks present in the VM folders.)
The operation is not supported on the object.
Vmotion of a CBT-enabled VM having multi-writer disk(s) is not supported
The operation is not allowed. Cannot attach a CBT enabled disk: /vmfs/volumes/########-####-####-####-############.vmdk to CBT enabled VM.
6.x, 7.x, 8.x
Backup products such as VMware vSphere Data Recovery, Veeam, Unitrends, and Commvault take advantage of Changed Block Tracking (CBT) for incremental backups if CBT is enabled in the virtual machine. For more information on CBT, see Changed Block Tracking (CBT) on virtual machines.
The CBT feature of VMware which facilitates taking incremental backups on virtual machines running on VMware ESXi. CBT identifies and tracks block changes since the last backup, and stores these changes as logs for tracking the backups.
You can use these PowerCLI commands to disable and then enable CBT without powering off the virtual machine. This can be useful when one or more of the disks of the virtual machine is extended past a 128Gb boundary.
$vm="VM_Name"
$vmtest = Get-vm $vm| get-view
$vmConfigSpec = New-Object VMware.Vim.VirtualMachineConfigSpec
$vmConfigSpec.changeTrackingEnabled = $false
$vmtest.reconfigVM($vmConfigSpec)
$snap=New-Snapshot $vm -Name "Disable CBT"
$snap | Remove-Snapshot -confirm:$false
$vmConfigSpec.changeTrackingEnabled = $true
$vmtest.reconfigVM($vmConfigSpec)
$snap=New-Snapshot $vm -Name "Enable CBT"
$snap | Remove-Snapshot -confirm:$false