Hi,
whats the vm.blah function / property to disable guest customization?
We need to temporarily disable it on a VM as part of a workflow.
I think this might work:
var guestCustomizationSection = newVm.getGuestCustomizationSection();
guestCustomizationSection.enabled = true;
activeTask = vm.updateSection(guestCustomizationSection);
Is this right?
dion