π ~1 min read
Table of contents
Symptom & Impact
After patch reboot, business-critical VMs stay in saved/off state and services remain unavailable.
Environment & Reproduction
Happens on hosts with tight memory and non-prioritized automatic startup actions.
Get-VM | Select Name,State,AutomaticStartAction,AutomaticStartDelay
Get-VMHost | fl MemoryCapacity,MemoryAvailable
Root Cause Analysis
Startup ordering and resource pressure prevent full VM restore during host boot.
Quick Triage
Identify failed VMs and inspect startup policy plus memory headroom.
Get-VM | ? {$_.State -ne 'Running'}
Get-VMMemory -VMName
Step-by-Step Diagnosis
Review VMMS startup events and host memory counters at boot.
Get-WinEvent -LogName Microsoft-Windows-Hyper-V-VMMS-Admin -MaxEvents 200
Get-Counter 'MemoryAvailable MBytes'

Solution – Primary Fix
Set prioritized startup policy and right-size startup memory footprints.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
Set-VM -Name -AutomaticStartAction StartIfRunning -AutomaticStartDelay 120
Set-VMMemory -VMName -StartupBytes 2GB

Solution – Alternative Approaches
Stage startup scripts to start tier-0 services first after host recovery.
Verification & Acceptance Criteria
All critical VMs auto-start successfully in controlled reboot test.
Rollback Plan
Restore previous startup actions if revised ordering affects dependent boot chains.
Prevention & Hardening
Simulate reboot runbooks quarterly and validate startup SLA with telemetry.
Related Errors & Cross-Refs
Related to dynamic memory mis-sizing and storage path warm-up delays.
Related tutorial: View the step-by-step tutorial for Windows Server 2016.
View all Windows Server 2016 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft Learn: Hyper-V VM automatic start/stop behavior and host capacity planning.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.