How do I format an internal hard drive to exFAT in Windows 10?

10

3

I have an internal hard drive that I use as storage where I dump the stuff I need backed up. I want to format it to exFAT instead of NTFS so that it doesn't have to deal with permissions. The problem is, it only appears to be available to format as NTFS. Is there a way to force it to be formatted as exFAT?

user400424

Posted 2016-06-08T08:25:51.053

Reputation: 3 314

Answers

16

  1. By Command prompt Format D: /A:64K /FS:ExFAT

64k is cluster size, D is target drive letter.

  1. By Diskpart:

    list disk

select disk '#' (where # is the number of the targer drive)

If you want that for a partition:

list part
select part # (where # is the number of the partition)
format fs=exfat -q 

If you want it for the whole drive just erase it all and make a single partition

clean
create partition primary

active (you many not need to make it active, so you can skip this)

format fs=exfat -q

Update: for Windows 10, use QUICK instead of -q

Overmind

Posted 2016-06-08T08:25:51.053

Reputation: 8 562

beaten by 11 seconds ... and more options to do the same thing too.. – Darius – 2016-06-08T08:36:46.623

Diskpart is good in case there are problems with normal format, but those usually appear for memory sticks, not HDDs. Good to have it, just in case. – Overmind – 2016-06-08T08:39:02.000

1In Windows 10 -q doesn't work anymore, use QUICK instead. – spackmat – 2017-07-21T12:24:18.070

Confirmed, updated. – Overmind – 2017-12-04T06:39:44.067

4

Open command line (CMD) and run the command below:

format X: /FS:exFAT

It basically means format the "X" Drive with exFAT Filesystem. Change the X to whatever drive letter the internal hard drive has at the moment.

There are other filesystem type, which you can check by doing format /?

Darius

Posted 2016-06-08T08:25:51.053

Reputation: 4 817

1

If windows fails to format your hard drive to exFAT, you can use third-party tools to do the formatting thing for you. For example, PartitionGuru can format hard drive to exFAT as well.

Step 1: Install and run this partition manager and you can see the hard drive in the software.

Step 2: Select the hard drive you want to format and click the Format button on the tool bar.

Step 3: Select exFAT in the file system colume and then click "Format" button.

brycefoster

Posted 2016-06-08T08:25:51.053

Reputation: 31

That's weird. I used Partition Magic, and no "ExFAT" option neither. – Quidam – 2020-01-31T17:53:47.560

PartitionGuru is now "DiskGenius". – Quidam – 2020-01-31T17:54:33.307

0

Well it appears that Windows 10 support for exFAT has been dropped in a recent update. The option no longer appears in the drive format dialog, nor does it appear in the diskpart utility. Any mention of exFAT has been expunged from the official diskpart documentation making me believe that Microsoft has officially terminated support for it, even so I cannot find any official announcements or confirmations of that. A very odd and stupid move IMO.

Braden Dodge

Posted 2016-06-08T08:25:51.053

Reputation: 195

Someone could explain me why? – Quidam – 2020-01-31T17:54:58.467