REW

How To Make A Bootable SD Card In Windows 11?

Published Aug 29, 2025 4 min read
On this page

The most reliable way to create a bootable Windows 11 SD card is by using a USB card reader and a third-party application like Rufus.

Although Microsoft's Media Creation Tool does not officially support SD cards, it is possible to make them bootable by having the system recognize the card and reader as a standard USB device. This method is ideal for installing Windows 11 or creating a recovery tool.

What you'll need

  • An 8GB or larger SD card.
  • A USB card reader. This is essential for your PC to recognize the SD card as a removable, bootable disk.
  • A Windows 11 ISO file, which you can download from Microsoft's website.
  • The Rufus utility, a free application for creating bootable drives.
  • A working Windows 11 PC with an internet connection.

Method 1: Create a bootable SD card with Rufus

Rufus is a simple, fast tool that handles the complex formatting and bootloader setup for you.

  1. Download the necessary files.
    • Windows 11 ISO file: Go to the Microsoft Download Windows 11 page. Scroll to "Download Windows 11 Disk Image (ISO)" and select Windows 11 (multi-edition ISO for x64 devices). Click Download, choose your language, and click the "64-bit Download" button to save the file.
    • Rufus: Navigate to the official Rufus website (rufus.ie), and download the latest version of the portable executable.
  2. Run Rufus and set up the SD card.
    • Insert your SD card into the USB card reader, then plug the reader into your PC.
    • Double-click the Rufus executable file to run it. If prompted by User Account Control, click Yes.
    • In Rufus, select your USB card reader (which contains your SD card) from the "Device" dropdown menu. Double-check that you've selected the correct drive to avoid data loss.
    • Click the SELECT button and locate the Windows 11 ISO file you downloaded earlier.
  3. Configure the boot options.
    • For the "Partition scheme," you'll typically select GPT for modern computers with UEFI. For older systems with a BIOS, choose MBR. If you're unsure, check your current system's partition style: open Disk Management (diskmgmt.msc), find your OS drive, right-click, and select "Properties > Volumes."
    • The "Target system" will auto-populate based on your partition scheme.
    • You can leave the "Volume label," "File system," and "Cluster size" on their default settings.
  4. Start the creation process.
    • Click the START button. You may see a "Windows Setup Customization" dialog box. This allows you to remove requirements like TPM 2.0 or Secure Boot, which is useful for installing Windows 11 on unsupported hardware. Select your options and click OK.
    • A warning will appear stating that all data on the drive will be destroyed. Confirm that you have the correct drive selected and click OK.
    • Wait for the process to finish. When the status bar says READY, your bootable SD card is complete.

Method 2: Use Diskpart and Command Prompt

For a more manual approach without third-party software, you can use Windows' built-in Diskpart utility.

  1. Open Command Prompt as an administrator.
    • Press the Windows key, type cmd, right-click on "Command Prompt," and select Run as administrator.
  2. Initialize Diskpart.
    • Type diskpart and press Enter.
    • Type list disk and press Enter to see all connected storage devices. Identify your SD card by its size and note its disk number (e.g., Disk 2).
  3. Clean and format the SD card.
    • Type select disk X (replace X with your SD card's number) and press Enter.
    • Type clean and press Enter to wipe the card.
    • Type create partition primary and press Enter.
    • Type select partition 1 and press Enter.
    • Type format fs=ntfs quick for standard installations, or format fs=fat32 quick for UEFI systems. Press Enter.
    • Type active and press Enter to mark the partition as active.
    • Type assign and press Enter to give it a drive letter.
    • Type exit and press Enter to close Diskpart.
  4. Copy the Windows 11 ISO files.
    • Right-click the Windows 11 ISO file and select Mount. Windows will assign it a virtual drive letter (e.g., G:).
    • Copy the installation files from the mounted ISO to your formatted SD card using the following command. Replace G: with the virtual ISO drive letter and H: with your SD card's drive letter.xcopy G:\*.* H:\ /s /e /f
    • Wait for the file copy to complete.

How to boot from your SD card

After creating the bootable SD card, you must configure your computer to boot from it.

  1. Restart your computer and enter the BIOS/UEFI settings. The key varies by manufacturer but is often F2, F10, F12, or Del.
  2. Navigate to the Boot Order menu.
  3. Change the boot priority to prioritize your SD card (detected as a USB drive) over your internal drive.
  4. Save your changes and exit the BIOS. Your PC will restart and boot from the SD card.
Enjoyed this article? Share it with a friend.