I've seen multiple threads about installing Windows 11 on unsupported hardware and installing Windows 11 on an external USB drive. All kinds of different methods have been posted: use rufus to create a modified Windows 11 USB flash drive; use a VM to install Windows 11 to a vhdx file and then use Macrium to image the vhdx file, then restore the image to a physical drive; attach a physical drive to a VM to install Windows 11 to it.
None of that is needed. If you want to install Windows 11 and just the normal Windows setup method won't work, all you need is just the plain Windows 11 USB flash drive created with Microsoft's Media Creation tool. Nothing else. And this method works with Windows 10 too. In the below example, I'm going to show you how to install to an external USB drive (SSD). This would also work if you wanted to install Windows 11 to an internal drive on a computer that does not meet the requirements for Windows 11. To prove it, I booted the standard Windows 11 USB flash drive created directly with the Media Creation on my computer in legacy BIOS (CSM) mode with secure boot and TPM disabled.
I tried to bold the actual commands in the code windows below, but bold did not stick. So please read carefully what is in the code windows to pick out the actual commands from the prompts and results.
1. Boot the computer from the Windows 11 (or 10) installation USB flash drive. If you are going to install to an external USB drive, it should also be attached before booting as well.
2. When you get the first screen asking for language, time and currency, and keyboard, press Shift + F10. On some keyboards, especially laptops, you may need to press Shift+ Fn + F10. This should open a command prompt.
3. "diskpart", "list disk":
Pick the disk you want to install Windows 11 (or 10) to. Mine is going to be Disk 3. Change the disk number in the next step to match the disk you want.
4. "select disk 3", "clean":
NOTE: This will erase the selected disk! If you have a data partition that you want to keep on the disk, then you need to have it set up ahead of time. You need a minimum of 32 GB of unallocated space on your disk (unallocated means no partition there). 64 GB or greater unallocated is recommended. If you have unallocated space and a data partition, then skip the "clean" command and skip the "convert" command in the next steps - start with the first "create part" command.
Step 5 below is for GPT and UEFI booting. If you need to set up for MBR and legacy BIOS booting, go to Step 6 instead.
5. Convert to GPT and create partitions:
Skip to step 7.
6. Convert to MBR and create partitions:
7. Where is our install file (.wim or .esd)? "List volume":
I'm looking for the Windows installation USB flash drive in the list. Mine is letter F:. Yours will probably be different. Change drive letter F: in the below commands to your drive letter.
8. Do we have install.wim or install.esd?
I have install.esd because I created my flash drive with the media creation tool. If you have install.wim, just change install.esd to install.wim in all the commands in the next two steps.
9. Which edition of Windows 11 (or 10) do I want?
Note the number of the index for the edition you want to install. I want Windows 11 Pro so index 6. Change the index number in the next step to match what you want. Also don't forget to change to install.wim if you need to.
10. Let's apply the image!
10. Let's set up our boot files and shutdown the computer! NOTE: if you are setting up an MBR disk for legacy BIOS booting, then change UEFI in the below command to BIOS (your command would be "bcdboot T:\Windows /s S: /f BIOS")
11. Reboot the computer from your new installation! I know it looks like a lot, but if you know the commands, the whole process takes less than 5 minutes (depending on the speed of the disk you are installing to).
None of that is needed. If you want to install Windows 11 and just the normal Windows setup method won't work, all you need is just the plain Windows 11 USB flash drive created with Microsoft's Media Creation tool. Nothing else. And this method works with Windows 10 too. In the below example, I'm going to show you how to install to an external USB drive (SSD). This would also work if you wanted to install Windows 11 to an internal drive on a computer that does not meet the requirements for Windows 11. To prove it, I booted the standard Windows 11 USB flash drive created directly with the Media Creation on my computer in legacy BIOS (CSM) mode with secure boot and TPM disabled.
I tried to bold the actual commands in the code windows below, but bold did not stick. So please read carefully what is in the code windows to pick out the actual commands from the prompts and results.
1. Boot the computer from the Windows 11 (or 10) installation USB flash drive. If you are going to install to an external USB drive, it should also be attached before booting as well.
2. When you get the first screen asking for language, time and currency, and keyboard, press Shift + F10. On some keyboards, especially laptops, you may need to press Shift+ Fn + F10. This should open a command prompt.
3. "diskpart", "list disk":
Rich (BB code):
Microsoft Windows [Version 10.0.22000.258]
(c) Microsoft Corporation. All rights reserved.
X:\Sources>diskpart
Microsoft DiskPart version 10.0.22000.1
Copyright (C) Microsoft Corporation.
On computer: MINWINPC
DISKPART> list disk
Disk ### Status Size Free Dyn Gpt
-------- ------------- ------- ------- --- ---
Disk 0 Online 476 GB 2048 KB *
Disk 1 Online 476 GB 0 B *
Disk 2 Online 28 GB 0 B
Disk 3 Online 119 GB 0 B *
Pick the disk you want to install Windows 11 (or 10) to. Mine is going to be Disk 3. Change the disk number in the next step to match the disk you want.
4. "select disk 3", "clean":
Rich (BB code):
DISKPART> select disk 3
Disk 3 is now the selected disk.
DISKPART> clean
DiskPart succeeded in cleaning the disk.
NOTE: This will erase the selected disk! If you have a data partition that you want to keep on the disk, then you need to have it set up ahead of time. You need a minimum of 32 GB of unallocated space on your disk (unallocated means no partition there). 64 GB or greater unallocated is recommended. If you have unallocated space and a data partition, then skip the "clean" command and skip the "convert" command in the next steps - start with the first "create part" command.
Step 5 below is for GPT and UEFI booting. If you need to set up for MBR and legacy BIOS booting, go to Step 6 instead.
5. Convert to GPT and create partitions:
Rich (BB code):
DISKPART> convert gpt
DiskPart successfully converted the selected disk to GPT format.
DISKPART> create part EFI size=100
DiskPart succeeded in creating the specified partition.
DISKPART> format fs=fat32 quick
100 percent completed
DiskPart successfully formatted the volume.
DISKPART> assign letter=s
DiskPart successfully assigned the drive letter or mount point.
DISKPART> create part MSR size=16
DiskPart succeeded in creating the specified partition.
DISKPART> create part pri
DiskPart succeeded in creating the specified partition.
DISKPART> format fs=ntfs quick
100 percent completed
DiskPart successfully formatted the volume.
DISKPART> assign letter=t
DiskPart successfully assigned the drive letter or mount point.
Skip to step 7.
6. Convert to MBR and create partitions:
Rich (BB code):
DISKPART> convert mbr
DiskPart successfully converted the selected disk to MBR format.
DISKPART> create part pri size=100
DiskPart succeeded in creating the specified partition.
DISKPART> format fs=ntfs quick label="System Reserved"
100 percent completed
DiskPart successfully formatted the volume.
DISKPART> assign letter=s
DiskPart successfully assigned the drive letter or mount point.
DISKPART> active
DiskPart marked the current partition as active.
DISKPART> create part pri
DiskPart succeeded in creating the specified partition.
DISKPART> format fs=ntfs quick
100 percent completed
DiskPart successfully formatted the volume.
DISKPART> assign letter=t
DiskPart successfully assigned the drive letter or mount point.
7. Where is our install file (.wim or .esd)? "List volume":
Rich (BB code):
DISKPART> list volume
Volume ### Ltr Label Fs Type Size Status Info
---------- --- ----------- ----- ---------- ------- --------- --------
Volume 0 C Data NTFS Partition 461 GB Healthy
Volume 1 D RECOVERY FAT32 Partition 14 GB Healthy
Volume 2 E 20H2 NTFS Partition 476 GB Healthy
Volume 3 FAT32 Partition 100 MB Healthy Hidden
Volume 4 F ESD-USB FAT32 Removable 28 GB Healthy
* Volume 5 T NTFS Partition 119 GB Healthy
Volume 6 S FAT32 Partition 100 MB Healthy Hidden
DISKPART> exit
Leaving DiskPart...
I'm looking for the Windows installation USB flash drive in the list. Mine is letter F:. Yours will probably be different. Change drive letter F: in the below commands to your drive letter.
8. Do we have install.wim or install.esd?
Rich (BB code):
X:\Sources>f:
F:\>cd sources
F:\sources>dir install.*
Volume in drive F is ESD-USB
Volume Serial Number is D447-901C
Directory of F:\sources
10/31/2021 09:13 AM 3,765,293,226 install.esd
1 File(s) 3,765,293,226 bytes
0 Dir(s) 26,498,646,016 bytes free
I have install.esd because I created my flash drive with the media creation tool. If you have install.wim, just change install.esd to install.wim in all the commands in the next two steps.
9. Which edition of Windows 11 (or 10) do I want?
Rich (BB code):
F:\sources>dism /get-wiminfo /wimfile:install.esd
Deployment Image Servicing and Management tool
Version: 10.0.22000.1
Details for image : install.esd
Index : 1
Name : Windows 11 Home
Description : Windows 11 Home
Size : 15,856,088,776 bytes
Index : 2
Name : Windows 11 Home N
Description : Windows 11 Home N
Size : 15,175,873,039 bytes
Index : 3
Name : Windows 11 Home Single Language
Description : Windows 11 Home Single Language
Size : 15,859,106,413 bytes
Index : 4
Name : Windows 11 Education
Description : Windows 11 Education
Size : 16,140,692,304 bytes
Index : 5
Name : Windows 11 Education N
Description : Windows 11 Education N
Size : 15,457,664,834 bytes
Index : 6
Name : Windows 11 Pro
Description : Windows 11 Pro
Size : 16,137,711,140 bytes
Index : 7
Name : Windows 11 Pro N
Description : Windows 11 Pro N
Size : 15,457,442,265 bytes
The operation completed successfully.
Note the number of the index for the edition you want to install. I want Windows 11 Pro so index 6. Change the index number in the next step to match what you want. Also don't forget to change to install.wim if you need to.
10. Let's apply the image!
Rich (BB code):
F:\sources>dism /apply-image /imagefile:install.esd /index:6 /applydir:T:
Deployment Image Servicing and Management tool
Version: 10.0.22000.1
Applying image
[==========================100.0%==========================]
The operation completed successfully.
10. Let's set up our boot files and shutdown the computer! NOTE: if you are setting up an MBR disk for legacy BIOS booting, then change UEFI in the below command to BIOS (your command would be "bcdboot T:\Windows /s S: /f BIOS")
Rich (BB code):
F:\sources>bcdboot T:\Windows /s S: /f UEFI
Boot files successfully created.
F:\sources>T:\Windows\System32\shutdown /s /t 00
11. Reboot the computer from your new installation! I know it looks like a lot, but if you know the commands, the whole process takes less than 5 minutes (depending on the speed of the disk you are installing to).
- Windows Build/Version
- Windows 11 RTM created with MCT.
Last edited:
My Computers
System One System Two
-
- OS
- Windows 11
- Computer type
- PC/Desktop
- Manufacturer/Model
- Homebuilt
- CPU
- AMD Ryzen 7 3800XT
- Motherboard
- ASUS ROG Crosshair VII Hero (WiFi)
- Memory
- 32GB
- Graphics Card(s)
- EVGA GeForce GTX 1080 Ti
-
- Operating System
- Windows 11 Education
- Computer type
- Laptop
- Manufacturer/Model
- Dell Inspiron 7773
- CPU
- Intel i7-8550U
- Memory
- 32GB
- Graphics card(s)
- Nvidia Geforce MX150
- Sound Card
- Realtek
- Monitor(s) Displays
- 17"
- Screen Resolution
- 1920 x 1080
- Hard Drives
- Toshiba 512GB NVMe SSD
SK Hynix 512GB SATA SSD
- Internet Speed
- Fast!