Windows OS Hub
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux

 Windows OS Hub / Windows 11 / Upgrading to Windows 11 on Unsupported Hardware

October 31, 2025

Upgrading to Windows 11 on Unsupported Hardware

In this article, we’ll look at how to update a computer running Windows 10 to Windows 11 25H2 on unsupported hardware (without a TPM chip, UEFI, or with an old CPU). Microsoft’s minimum requirements for installing Windows 11 include the presence of a hardware TPM chip, UEFI, and a modern CPU released after 2017. If your PC doesn’t meet Windows 11’s minimum system requirements, it will be marked as incompatible and will not receive an upgrade offer through Windows Update

Contents:
  • Prepare for the Upgrade from Windows 10 to Windows 11
  • Bypass Compatibility Checks When Upgrading to Windows 11
  • Upgrade Windows 10 to Windows 11 with /Product Server Option

This post explains how to manually upgrade a computer that doesn’t meet the minimum requirements from Windows 10 to Windows 11 25H2 (an in-place upgrade). With this method, you can upgrade to Windows 11 without performing a clean reinstallation of the operating system or losing any data or installed apps.

The latest version of Windows 10 22H2 reached its end of support on October 14, 2025. After this date, computers running Windows 10 will no longer receive security updates or patches (this doesn’t apply to Enterprise LTSC editions of Windows 10 or to devices enrolled in the Windows 10 Extended Security Updates program).

Prepare for the Upgrade from Windows 10 to Windows 11

To update your computer, you need the official Windows 11 25H2 ISO image, which can be downloaded directly from the Microsoft website or created using the Media Creation Tool (https://www.microsoft.com/software-download/windows11).

The latest version of Windows 10 is 22H2. Make sure your computer is running this version:

  1. Press Win+R
  2. Run the command: winver
  3. This will show you which version of Windows is installed.winver cmd - check Windows build

Mount the ISO file that contains the Windows 11 25H2 installation image. A virtual DVD drive will appear and be assigned the drive letter D:\ (by default).

mount windows11 iso image

To manually upgrade an old computer from Windows 10, 22H2 to Windows 11, run the setup.exe file from a mounted ISO image containing build 25H2. If your computer’s hardware doesn’t meet the minimum requirements, the following message will appear:

This PC doesn’t currently meet Windows 11 system requirements:

  • The process isn’t supported for this version of Windows
  • The PC must support TPM 2.0

To check if your computer’s hardware is compatible with Windows 11 25H2, open a command prompt and navigate to the virtual DVD drive:

cd d:\

Run the command:

./setup.exe /auto upgrade /noreboot /DynamicUpdate disable /Compat ScanOnly

In this mode, Windows Setup runs a compatibility check without performing an upgrade.

Can't upgrade from Windows 10 to Windows 11: PC doesn’t meet ystem requirements

Bypass Compatibility Checks When Upgrading to Windows 11

To prevent the Windows 11 setup program from checking your computer’s hardware compatibility, you need to make changes to the registry.

According to Microsoft’s official documentation, there is an official way to bypass the hardware requirement by adding the AllowUpgradesWithUnsupportedTPMOrCPU registry parameter (link). This option allows you to skip the TPM 2.0 chip and CPU checks when upgrading the OS.

Run the following command to create this registry parameter:

reg add HKLM\SYSTEM\Setup\MoSetup /f /v AllowUpgradesWithUnsupportedTPMorCPU /d 1 /t reg_dword

The AllowUpgradesWithUnsupportedTPMOrCPU registry parameter allows the old CPU and the presence of a TPM 2.0 chip to be ignored, but a TPM 1.2 chip is still required. You will not be able to update in this way if the TPM is missing.

The following PowerShell command checks for the presence of a TPM chip on a computer:

Get-TPM

Get-TPM - check for TPM chip

If the TPM chip is missing (TpmPresent=False), there are workarounds to upgrade to Windows 11 without checking hardware compatibility.

Run the following commands in an elevated command prompt:

reg delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\CompatMarkers" /f
reg delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Shared" /f
reg delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\TargetVersionUpgradeExperienceIndicators" /f
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\HwReqChk" /v "HwReqChkVars" /t REG_MULTI_SZ /s "," /d "SQ_SecureBootCapable=TRUE,SQ_SecureBootEnabled=TRUE,SQ_TpmVersion=2,SQ_RamMB=8192" /f
reg add "HKLM\SYSTEM\Setup\MoSetup" /v "AllowUpgradesWithUnsupportedTPMOrCPU" /t REG_DWORD /d 1 /f

reg add entries to bypass windows 11 hw checks

Microsoft doesn’t officially support this method or the other methods described below for upgrading to Windows 11 on unsupported hardware.
  • The first three commands remove registry entries containing data about previous upgrade attempts and failed hardware requirements checks.
  • Then, the HwReqChk registry parameter is added to make it seem like the computer passed the minimum requirements compatibility check (TPM, CPU, RAM, etc.).

Once these changes have been implemented, run the setup.exe file from the Windows 11 installation media. You can now perform an in-place upgrade of Windows 10, ignoring hardware checks while keeping your installed programs and files (check the Keep personal files and apps option).

Upgrade to windows 11 with keep personal files and apps

When performing a clean installation of Windows 11, you can use several registry options to bypass the minimum hardware requirements checks: How to Install Windows 11 on Unsupported Hardware (Without TPM & Secure Boot).

Upgrade Windows 10 to Windows 11 with /Product Server Option

Another way to upgrade to Windows 11 is to run setup.exe with the argument indicating that you are installing a Windows Server edition, which bypasses the CPU and TPM chip verification checks.

Open a command prompt and run the Windows 11 update wizard in special mode:

./setup.exe /product server

Or:

D:\sourcs\setupprep.exe /product server

Upgrade to Windows 11 using setup.exe /product server

During the upgrade, select the option to keep your installed files, settings, and programs.

Upgrade to Windows 11 with keep files and settings

Even though you specified the Windows Server installation options, the desktop (client) Windows edition remains the same.

After the upgrade is complete, check the Windows 11 version and build using the command:

Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion ' | select ProductName, DisplayVersion, CurrentBuild

check Windows version

As you can see, the upgrade to Windows 11 Pro was completed successfully.

A previous bypass method of upgrading to Windows 11 on unsupported hardware involved modifying the appraiserres.dll file on the installation media.

  1. Copy the Windows 11 installation ISO image files to your local drive (or burn the ISO image to a USB stick)
  2. Clear the contents of the appraiserres.dll file in the sources folder:Clear-Content C:\Win11_ISO\sources\appraiserres.dll -Force
  3. Then run the setup.exe file and continue with the Windows 11 upgrade. Clear appraiserres.dll to bypass Windows 11 installation requirements

To silently upgrade your computer to Windows 11, you can use the setup.exe command-line options:

start /wait d:\setup.exe /Auto Upgrade /Quiet /DynamicUpdate disable /showoobe None /Telemetry Disable /compat IgnoreWarning /NoReboot

Also, ensure that the build upgrade is not blocked in Windows settings. Read more: How to prevent auto upgrade to new Windows build

It is also advisable to disable the new update protection option called Safeguard Holds, which blocks the delivery of new Windows versions to systems with known compatibility issues.

reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /f /v DisableWUfBSafeguards /d 1 /t reg_dword

It corresponds to the GPO option Disable safeguards for Feature Updates under Computer Configuration -> Administrative Templates -> Windows Components -> Windows Update -> Manage updates offered from Windows Updates.

Update from October 2025. You can also use the Flyby11 third-party tool to upgrade a computer that doesn’t meet the Windows 11 system requirements. I prefer avoiding third-party tools on my production systems, especially since system requirement checks can be easily bypassed using only built-in tools.

12 comments
15
Facebook Twitter Google + Pinterest
Windows 10Windows 11
previous post
Adding ESXi Host to VMware vCenter Server (vCSA)
next post
How to Create, Delete, and Manage System Restore Points on Windows 10/11

Related Reading

How to Allow Multiple RDP Sessions on Windows...

March 15, 2024

How to Run Program without Admin Privileges and...

June 8, 2023

How to Install Remote Server Administration Tools (RSAT)...

March 17, 2024

Managing Windows Firewall Rules with PowerShell

March 11, 2024

How to Fix ‘An Operating System Wasn’t Found’...

August 24, 2023

Create a Custom Windows Image with Pre-installed Apps

February 28, 2024

How to Allow Non-Admin User to Start/Stop Service...

March 15, 2024

Fixing ‘The Network Path Was Not Found’ 0x80070035...

August 31, 2023

12 comments

danny November 13, 2024 - 10:34 am

thank you very much for your help, i was stuck after installing a windows server 2019 it crushed my system.
i have tried reinstalling with no luck until it kept restart each time i boot with a usb until you help me thanks

Reply
G. December 1, 2024 - 10:28 pm

Thanks for this guide, I’m wondering what could happens to the those unsupported computers which are upgraded to Windows 11… In my company we have many computers which are totally capable to work fine with W11 but are unsupported by Microsoft, so I’m considering the risk of an upgrade… 😉

Reply
RK December 7, 2024 - 12:01 am

creating a security risk doing this commercially.

Reply
Z April 6, 2025 - 2:03 pm

The issue is that certain features require some special CPU instructions, but they aren’t enabled by default and not needed for a personal use case.

Reply
pete January 11, 2025 - 10:58 am

Will a W11 install as described above receive regular security updates ?
thanks

Reply
admin January 15, 2025 - 8:19 am

Microsoft has confirmed that devices running Windows 11 on unsupported hardware will continue to receive security patches and other updates through Windows Update, but these devices are not guaranteed to receive all feature updates in the same way as supported devices.

Reply
Mr Joel N Withers February 2, 2025 - 11:12 am

For what I understand, this isn’t acurate. Microsoft has not guaranteed that W11 PCs using unsupported hardware will receive any updates. https://support.microsoft.com/en-us/windows/windows-11-on-devices-that-don-t-meet-minimum-system-requirements-0b2dc4a2-5933-4ad4-9c09-ef0a331518f1

Reply
admin February 2, 2025 - 5:27 pm

At the moment, my test Win 11 VM, running on unsupported hardware (no TPM and no secure boot), gets all the security updates. Of course, there is no guarantee from MSFT that these devices will continue to receive updates in the future.
Thanks for the proof.👍

Reply
Adam April 4, 2025 - 6:16 am

Thx so much for this

Reply
Hotshot June 26, 2025 - 10:01 am

Thanks a lot, it worked.

Reply
Stuart July 31, 2025 - 7:17 pm

I have used RUFUS to create the USB media to use on my unsupported CPU. do I just create without using the RUFUS ignore features and just create the USB as I am using the registry change above.. Woudl the media creation tool also work?

Reply
admin August 21, 2025 - 9:26 am

Yes, you can use the Media Creation Tool to create a bootable USB stick and follow this guide to bypass the system requirements using the registry option AllowUpgradesWithUnsupportedTPMOrCPU.

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • SMB over QUIC: Mount File Share over Internet without VPN on Windows Server 2025

    November 4, 2025
  • How to Find a Previous Computer Name in Windows

    October 28, 2025
  • Stop Windows Server from Auto-Shutdown Every Hour

    October 22, 2025
  • How to Delete a Windows Service via CMD or PowerShell

    October 16, 2025
  • Resource Fair Sharing in Windows Server Remote Desktop Services (RDS)

    October 6, 2025
  • How to Disable (Enable) Credential Guard in Windows 11

    October 6, 2025
  • Wrong Network Profile on Windows Server after Reboot

    September 30, 2025
  • How to Get Windows 10 Extended Security Updates After End-Of-Life

    September 24, 2025
  • Blocking NTLM Connections on Windows 11 and Windows Server 2025

    September 23, 2025
  • Windows Stucks at ‘Getting Windows Ready, Don’t Turn Off Computer’

    September 15, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • How to Allow Multiple RDP Sessions on Windows 10 and 11
  • How to Run Program without Admin Privileges and Bypass UAC Prompt
  • Fix: BSOD Error 0x0000007B (INACCESSABLE_BOOT_DEVICE) on Windows
  • Fixing ‘The Network Path Was Not Found’ 0x80070035 Error Code on Windows
  • How to Delete Old User Profiles in Windows
  • How to Install Remote Server Administration Tools (RSAT) on Windows
  • How to Backup and Copy Local Group Policy Settings to Another Computer
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top