This is an old revision of the document!
Turn on autostart
#!/bin/sh # Turn on auto_poweron xe vm-param-set uuid=$( xe vm-list name-label=<name> --minimal ) other-config:auto_poweron=true
Turn off autostart
#!/bin/sh # Turn off auto_poweron xe vm-param-set uuid=$( xe vm-list name-label=<name> --minimal ) other-config:auto_poweron=false