Installing Windows OS

Windows Host

  1. Visit Microsoft site to download the Windows 11 OS

    screenshot

  2. Format a USB stick to FAT32 format, before you start burning the OS.

  3. Use Rufus or Balena Etcher whatever tool you like to burn the downloaded OS to a USB stick.

  4. Connect the USB stick to the board and start flashing the OS.

Linux Host

  1. As mentioned earlier in the Windows Host section download the Windwos OS first.

  2. Format a USB stick to FAT32 format, before you start burning the OS.

    sudo umount /dev/sd(x)*
    sudo mkfs.vfat -F 32 -n WINDOWS11 /dev/sd(x) -I
  3. Use Balena Etcher or Linux dd command utility method to burn the OS file to a USB stick.

    sudo dd if=os-file-name of=/dev/sde bs=4M status=progress conv=fsync
  4. Connect the USB stick to the board and start flashing the OS.