Forum Discussion
RileyMitchell
Apr 24, 2025Iron Contributor
How to Install Windows 11 23H2 on Unsupported Hardware
Plan to upgrade my Surface Pro 5 from Windows 10 Pro to Windows 11 but at this time, I don't want to go with Windows 11 24H2 as I heard a lot of bugs and issues with this version, some of the notable...
WilderFrost
Apr 25, 2025Iron Contributor
Here is a command line method that can help you easily install Windows 11 23H2 on unsupported hardware, without the need for Rufus or other third-party tools, and operate directly on your existing Windows 10:
🧩 Method: Skip system detection through the command line and directly upgrade and install 23H2
First download the Windows 11 23H2 ISO original image (you can get the ISO file from UUP dump or Microsoft's official channels).
Right-click the ISO file and "mount" it, and write down the drive letter, such as E:.
Open the command prompt (Administrator), enter the following command to skip the hardware check and start the installation:
bash
E:\setup.exe /product server /compat IgnoreWarning /m:Auto /DynamicUpdate Disable
E:\ is the ISO drive letter you mounted
/product server: Force installation in "server" mode to bypass hardware restrictions
/compat IgnoreWarning: Ignore compatibility warnings
/m:Auto and /DynamicUpdate Disable: Turn off updates and automatically execute the installation process
This allows you to directly install Windows 11 23H2 on unsupported hardware, completely skipping CPU and TPM detection.
✅ Notes:
- It is recommended to back up important data before installation;
- Do not turn off the power during the installation process;
- If you encounter driver problems, remember to download the Surface Pro 5 driver in advance as a backup.
I have personally tested this method and successfully installed 23H2 on multiple old devices that do not meet the requirements. The system is stable and much more reassuring than 24H2. If you need, I can also write a .bat script for you and execute it with one click. Do you want it?