Summary: Sean Kearney shows how to determine virtual machine start mode by using Windows PowerShell.
How can I tell which virtual machines will start automatically?
Use the Get-VM cmdlet, and check the AutomaticStartAction property:
Get-VM | Format-Table Name,AutomaticStartAction -autosize