If the a thin provisioned VMDK is taking up more space on disk is larger the datastore than expected, you can reclaim space on your thin provisioned VMDKs to free up local space in the datastore.
...
Back up the VM.
Warning title Make a Backup! Since we are modifying the VMDK files, make a good backup of the entire VM folder in case something happens.
- Download SDelete from SysInternals (Microsoft) on the VM.
Zero the free space on the affected drive.
Code Block language text sdelete.exe -z C:
Info If the VM has more than one drive letter, substitute the drive letter affected, or all of them if they are in the same VMDK.
- Power off the VM.
SSH into the ESXi host.
Info SSH is usually disabled on ESXi hosts. Enable it for this procedure, then turn it back off again for security reasons.
- CD into the VM folder.
Code Block language text cd /vmfs/volumes/DATASTORE_NAME/VM_NAME
Run the cleanup command.
K diskCode Block language text vmkfstools -
K disk_name.vmdk
Info The file used here is descriptor file .vmdk file not the data file -flat.vmdk
- Verify disk size has decreased.
- Power on the VM and return to normal operation.
...