Quantcast
Channel: VMware Communities: Message List
Viewing all articles
Browse latest Browse all 230777

Re: How do you change the Boot Delay in a VM

$
0
0

To set the boot delay for all your vm's to 5.000 miliseconds with PowerCLI you can use:

 

$spec = New-Object VMware.Vim.VirtualMachineConfigSpec

$spec.bootOptions = New-Object VMware.Vim.VirtualMachineBootOptions

$spec.bootOptions.bootDelay = 5000

Get-VM | ForEach-Object {

  $_.ExtensionData.ReconfigVM_Task($spec)

}


Viewing all articles
Browse latest Browse all 230777

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>