Guide to install Windows 11 on any PC (does not involve ISO modifications) This guide will take you through a clean and simple way to install Windows 11 on your device by bypassing all requirements without doing any ISO modifications. Note: Guide shows fresh installation only.
- Make sure that in Rufus, partition scheme is set to GPT. Everything else can be left on the default selection.
- Reboot your PC to firmware (Settings -> Update & Security -> Recovery -> Advanced startup)
- When Windows Recovery is loaded, look around for the option "UEFI Firmware" and go to that. This will restart your device to its BIOS settings.
- Look for "Boot" section (case on most firmwares) and boot to your USB drive.
- Press Shift + F10 to open up Command Prompt.
- Use
diskpart
to open up Microsoft DiskPart (needed for partitioning). - Use
list disk
to list disks online on your device. Choose the disk you'll install Windows on. For the entirety of this tutorial, I will assume its disk 0. Important note: The disk must be GPT. To determine this, look for the contents of the Gpt column that is shown when list disk is used. If it contains an asterisk, the disk supports GPT. If you don't see an asterisk, you need to convert your disk from MBR (current) to GPT. To do so, select the disk usingselect disk 0
and useconv gpt
. This shall convert your disk to GPT. - Use
select disk 0 to
select disk 0 for operations. - Use
list partition
to list all partitions in the current disk (we will assume disk has no partitions, hence create from scratch) - Use
create partition efi size=500
to create an EFI partition of 500MB. - Use
format fs=fat32 quick
to quick format the EFI partition with FAT32 filesystem. - Use
assign letter a
to assign your EFI partition A:. - Use
create partition primary
to create your primary OS partition, which will use the rest of the available disk space. - Use
format quick
to format the partition. - Use
assign letter c
to assign your OS partition C:.
To sum it all up,
Main OS partition is assigned C:
EFI/Boot partition is assigned A:
USB drive is assigned X:
(varies)
- Use
dism /Get-ImageInfo /ImageFile:X:\sources\install.wim
to query the USB drive.
We are going to install Windows 11 Pro, which is Index: 6 in my case.
- Use
dism /Apply-Image /ImageFile:X:\sources\install.wim /Index:6 /ApplyDir:C:
to copy the OS files. - Use
bcdboot C:\Windows /s A: /f ALL
to copy the boot files.
Go ahead, close all active Windows and reboot your PC.
Sees Windows 11 boot logo
Albacore on Twitter for the ISO file.
Gursewak for CheemsMirror.
The rest of the Internet.
BTW, did you check out CleanWin yet?
You may have to use
/ImageFile:D:\sources\install.wim
instead, although this may be because I'm installing this in a VM.