What are the supported Windows Server upgrade paths in 2026?
Planning a Windows Server upgrade requires understanding Microsoft's supported upgrade paths and following a systematic approach. With Windows Server 2025 now available, Microsoft has expanded in-place upgrade options, allowing jumps of up to four versions in some cases. However, not all upgrade paths are supported, and attempting unsupported upgrades will result in failure.
This comprehensive guide walks you through the entire process, from initial planning to post-upgrade verification, ensuring your server upgrade succeeds without data loss or extended downtime.
How do I determine my current Windows Server version and upgrade options?
Before planning any upgrade, you need to accurately identify your current Windows Server version and understand which upgrade paths are available. Microsoft maintains strict compatibility matrices that determine supported upgrade scenarios.
Start by documenting your current system configuration. Open PowerShell as Administrator and run these commands to capture essential system information:
Related: How to Install and Configure WSUS on Windows Server 2019
Get-ComputerInfo -Property WindowsBuildLabEx,WindowsEditionID,TotalPhysicalMemory | Out-File -FilePath C:\Temp\computerinfo.txt
systeminfo.exe | Out-File -FilePath C:\Temp\systeminfo.txt
ipconfig /all | Out-File -FilePath C:\Temp\ipconfig.txt
Get-WindowsFeature | Where-Object InstallState -eq "Installed" | Out-File -FilePath C:\Temp\installed-features.txtNext, identify your exact Windows Server version:
$OS = Get-WmiObject -Class Win32_OperatingSystem
Write-Host "Current Version: $($OS.Caption)"
Write-Host "Build Number: $($OS.BuildNumber)"
Write-Host "Edition: $($OS.OperatingSystemSKU)"The upgrade path matrix for 2026 shows significant limitations for older versions:
| Source Version | To 2016 | To 2019 | To 2022 | To 2025 |
|---|---|---|---|---|
| 2008/2008 R2 | No | No | No | No |
| 2012 | Yes | No | No | No |
| 2012 R2 | Yes | Yes | No | Yes |
| 2016 | N/A | Yes | Yes | Yes |
| 2019 | N/A | N/A | Yes | Yes |
| 2022 | N/A | N/A | N/A | Yes |
For systems running Windows Server 2012, you must first upgrade to 2016 before proceeding to newer versions. This creates a multi-step upgrade process that requires additional planning and downtime.



