VMware Cloud Community
BaiG1
Enthusiast
Enthusiast

Delete Failed Request

Hi All

Can we delete a failed request ?

I request a VM, but the workflow failed and the request shows "in progress".  I couldn't find the delete button Smiley Sad

anyone met this ?

very appreciate for your reply

Best Regards

Bai

0 Kudos
2 Replies
admin
Immortal
Immortal

Is this a 6.0 beta question or a vCAC 5.2 question?  There should be a destroy menu item.  have any screenshots?

0 Kudos
d-fens
Enthusiast
Enthusiast

You can always delete a machine via the API (if destroy does not work):

$vm = $MgmtContext.VirtualMachines |? VirtualMachineName -eq failedsrv1';

$MgmtContext.DeleteObject($vm);

$MgmtContext.SaveChanges();


Ronald Rink d-fens GmbH
0 Kudos