Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • 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
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • 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
  • PowerShell
  • Linux

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

March 6, 2024

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 23H2 on unsupported hardware (without a TPM chip and with older CPU models. The presence of a hardware TPM chip, Secure Boot, and a new CPU (released after 2017) are Microsoft’s minimum requirements for installing Windows 11. If your PC doesn’t meet the minimum requirements, it will be considered incompatible and will not be offered an upgrade to Windows 11 through Windows Update.

Microsoft announces it will not release build 23H2 for Windows 10. This means: Windows 10 will end support on 14 October 2025. After this date, security updates and patches will no longer be available for Windows 10 computers (except for LTSC editions). This means that 22H2 will be the final version of Windows 10.

If you try to manually update Windows 10 22H2 to Windows 11 on an old computer by using an ISO image with build 23H2, you get the following message:

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

You can use the setup.exe program on the Windows installation ISO image to check that your computer’s hardware is compatible with Windows 11 (use the official Media Creation Tool to create a Windows 11 installation ISO image). Mount the ISO image, open the command prompt, and navigate to the virtual CD/DVD drive:

cd d:\

Run the command:

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

In this mode, Windows Installer performs a compatibility check without performing an update.

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

There is an official way to bypass the hardware requirement by using the AllowUpgradesWithUnsupportedTPMOrCPU registry parameter (link). Run the following command to create this registry parameter

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

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

You can then upgrade Windows 10 to Windows 11 23H2 using setup.exe on the installation image while keeping your personal files and apps.

AllowUpgradesWithUnsupportedTPMorCPU - bypass system checks to allow upgrade to Windows 11

Microsoft does not officially support this method or other methods described below for upgrading to Windows 11 on unsupported hardware.

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 the computer:

Get-TPM

Get-TPM - check for TPM chip

If the TPM chip is missing (TpmPresent=False), upgrading to Windows 11 without checking hardware compatibility is possible.

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

In this mode, the Windows 11 installer thinks it’s installing Windows Server Edition and doesn’t check the CPU and TPM chip.

Upgrade to Windows 11 with keep files and settings

After performing the update in this mode, the regular Pro edition of Windows 11 will be installed on the computer. Check your Windows 11 version and build number with this command

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

check Windows version

Replacing the appraiserres.dll file on the installation image is another fun way to upgrade to Windows 11:

  1. Copy the Windows 11 installation ISO image files to your local drive;
  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

Ensure that build upgrading is not disabled in the Windows settings. Read more: How to prevent auto upgrade to Windows 11?

You should also disable the new Feature Update Protection option, which block the delivery of new versions of Windows:

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

Many older computers not formally compatible with Windows 11 are still in use in the enterprise. Presumably, as we get closer to the end of the support date for Windows 10, Microsoft will offer additional W11 upgrade options on unsupported hardware for enterprise customers.

9 comments
12
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

9 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

Leave a Comment Cancel Reply

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

Recent Posts

  • Map a Network Drive over SSH (SSHFS) in Windows

    May 13, 2025
  • Configure NTP Time Source for Active Directory Domain

    May 6, 2025
  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 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