How to start Hyper-V virtual machine from command line
Forums:
To start a Hyper-V virtual machine from the command line, you can use the following methods:
Start-VM cmdlet: This method requires PowerShell. Run the following command:
Start-VM -Name <VMName>
Replace
Hyper-VUtils.exe: This method requires the Hyper-VUtils.exe tool, which is included with Hyper-V. Run the following command:
HyperVUtils.exe startvm <VMName>
Replace
Resumevm option: If the virtual machine is paused, you can use the resumevm option to resume it. Run the following command:
resumevm <VMName>
Replace