"VC [vCenter Name] still contains references to resolved VMs"
References in the DB still exist between the vCenter that is being Unregistered and Cloud Director's list of active VMs.
To investigate and remove still referenced Resolved VMs, please contact Broadcom Support and reference this KB Article
db select id,name from virtual_center where name = '[vCenter Name]';
3. Find Resolved VMs tied to the vCenter, substituting [vCenter ID] from the previous SQL:
select name from vapp_vm where svm_id in (select id from vm where vc_id = '[vCenter ID]');
select * from vm where vc_id = '[vCenter ID]';
The above SQL will give an idea of the VMs that are still referenced by the vCenter.