Format MicroSD Card on Windows 10
If you want to format a MicroSD card on Windows 10, you can do so; however, you may need to buy additional hardware, such as an adapter to connect the card to your computer.
However, if your Windows 10 system has an SD card slot, you can purchase a MicroSD card adapter. It’s inexpensive, and it frequently comes with MicroSD cards.
You can format a MicroSD card using the Disk Management tool in Windows 10, which has a simple GUI, File Explorer, or the Diskpart command-line tool.
NOTE: Formatting the card will ERASE ALL DATA on it.
Related: How to install Mouse drivers on Windows 10
1. Format MicroSD card via Disk Management
- Connect the MicroSD card to your system via an adapter.
- Tap the Win+R keyboard shortcut to open the run box.
- In the run box enter
diskmgmt.msc
and tap Enter. - The MicroSD card will be listed in the bottom half of the app.
- Right-click a volume/drive or the entire disk, and select Format.
- Select a file system, and make other changes as necessary.
2. Format MicroSD Card via File Explorer
- Connect the MicroSD card to your system via an adapter.
- Open File Explorer.
- Go to This PC.
- The MicroSD card will be listed under Devices and drives.
- Right-click the MicroSD card, and select Format from the context menu.
- Choose between full format and quick format, select a file system, and click Start.
3. Format MicroSD card via Diskpart
- Connect the MicroSD card to your system via an adapter.
- Open Command Prompt with admin rights.
- Enter
diskpart
and tap Enter. - A new Command Prompt window will open. Switch over to it.
- Run this command to list all connected disks:
list disk
- Take note of the disk number of the MicroSD card.
- Run this command to select the MicroSD card:
select disk no
. Replace ‘no’ with the number given to the MicroSD card.
- Run this command to list volumes:
list volume
. - Take note of the volume number of the MicroSD card.
- Select the volume with this command:
select volume no
. Replace ‘no’ with the number of the MicroSD card’s volume. - Run the following command to format the volume/card;
- To format on FAT32 file system:
format fs=fat32
- To format on the NTFS file system:
format fs=NTFS
- To format on the exFAT file system:
format fs=exFAT
- To format on FAT32 file system:
- To perform a quick format, add ‘quick’ at the end of the previous command. For example:
format fs=fat32 quick
.