Affected versions: Windows Server 2016

πŸ“– ~1 min read

Table of contents
  1. Symptom & Impact
  2. Environment & Reproduction
  3. Root Cause Analysis
  4. Quick Triage
  5. Step-by-Step Diagnosis
  6. Solution – Primary Fix
  7. Solution – Alternative Approaches
  8. Verification & Acceptance Criteria
  9. Rollback Plan
  10. Prevention & Hardening
  11. Related Errors & Cross-Refs
  12. References & Further Reading

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'
Illustrative mockup for windows-server-2016 β€” terminal_or_powershell
VM startup policy and host memory checks β€” Illustrative mockup β€” Progressive Robot

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
Illustrative mockup for windows-server-2016 β€” event_or_log_viewer
VM startup success after policy correction β€” Illustrative mockup β€” Progressive Robot

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 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.