Files
windows-scripts/HyperV/EnableAllVMsAutoStart.bat
2023-12-05 19:39:38 -06:00

4 lines
181 B
Batchfile
Executable File

mode con: cols=120 lines=30
powershell -command "Get-VM | Set-VM -AutomaticStartAction Start -Verbose"
powershell -command "Get-VM | Select-Object VMname,AutomaticStartAction"
pause