mirror of
https://github.com/jbowdre/vRealize.git
synced 2024-11-21 17:32:18 +00:00
new action: enableVBS.js
This commit is contained in:
parent
560a902a52
commit
3f4d0f60ca
1 changed files with 48 additions and 0 deletions
|
@ -0,0 +1,48 @@
|
||||||
|
/* JavaScript: enableVBS
|
||||||
|
Modifies a VM to enable Virtualization Based Security.
|
||||||
|
Inputs: vmName (string)
|
||||||
|
Return type: string
|
||||||
|
*/
|
||||||
|
var vm = VcPlugin.getAllVirtualMachines(null, vmName)[0];
|
||||||
|
|
||||||
|
// Power off VM if it's running
|
||||||
|
var originalState = vm.state;
|
||||||
|
if (originalState === "poweredOn") {
|
||||||
|
System.log("VM is running running. Stopping VM...")
|
||||||
|
function sleep(milliseconds) {
|
||||||
|
var timeStart = new Date().getTime();
|
||||||
|
while (true) {
|
||||||
|
var elapsedTime = new Date().getTime() - timeStart;
|
||||||
|
if (elapsedTime > milliseconds) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
vm.shutdownGuest();
|
||||||
|
while (vm.state != "poweredOff") {
|
||||||
|
System.debug("VM is stopping...")
|
||||||
|
sleep(4000);
|
||||||
|
vm = VcPlugin.getAllVirtualMachines(null, vmName)[0];
|
||||||
|
}
|
||||||
|
System.log("VM is stopped.");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Enable VBS
|
||||||
|
var bootOpts = new VcVirtualMachineBootOptions();
|
||||||
|
var flags = new VcVirtualMachineFlagInfo();
|
||||||
|
var spec = new VcVirtualMachineConfigSpec();
|
||||||
|
bootOpts.efiSecureBootEnabled = true;
|
||||||
|
flags.vbsEnabled = true;
|
||||||
|
flags.vvtdEnabled = true;
|
||||||
|
spec.firmware = VcGuestOsDescriptorFirmwareType.efi;
|
||||||
|
spec.nestedHVEnabled = true;
|
||||||
|
spec.bootOptions = bootOpts;
|
||||||
|
spec.flags = flags;
|
||||||
|
System.log("Reconfiguring VM...")
|
||||||
|
vm.reconfigVM_Task(spec);
|
||||||
|
|
||||||
|
// Start VM if it was running.
|
||||||
|
if (originalState === "poweredOn") {
|
||||||
|
System.log("VM is starting...")
|
||||||
|
vm.powerOnVM_Task();
|
||||||
|
}
|
Loading…
Reference in a new issue