Here is how to kill a VM inside Xenserver when it doesn't respond to the force shutdown in XenCenter
Log into the CLI, there are two ways to do the, one with xe and one with xl
xl list xl destroy ID #Where ID is the domain ID determined from the above command #Example xl destroy 33
When the VM and domain ID isn't listed using the above commands, you will need to use xe
#Get the uuid of the VM you wish to kill, take note of the UUID field. xe vm-list #List the domains and get the id by comparing the uuid field. list_domains #Destroy the domain /opt/xensource/debug/xenops destroy_domain -domid DOMID /opt/xensource/debug/xenops destroy_domain -domid 165 #Example