0

I am following some steps to make a USB stick that a Tesla can access, and am a tad alarmed (and frustrated) that I need to use a third party utility (Fat32Formatter) to format the 2nd partition to FAT32.

To be clear, I am creating a 32GB partition that is FAT32 (for the tesla dashcam) and the rest of the space for a single partition for music files.

The Tesla OS cannot access NTFS volumes, from what I understand.

I deleted the volumes on the USB, and then using diskpart did these commands:

convert gpt
create partition primary size=31000 align=1024
create partition primary align=1024

Then in Windows Disk Management, I formatted the first partition to FAT32. It works great. I can also, in Windows tools, format the second partition as exFAT or NTFS (and have tried that, and it works great). THE QUESTION: How to format the 2nd partition to FAT32?

There must be a native Windows way to do this?

I am on Windows10

UPDATE: I did, in fact, get the 2nd volume formatted FAT32 using a third party partition management tool. The question on this thread stands: Windows happily lets you CREATE A SECOND PARTITION on the USB stick. Windows also happily formats very large volumes as FAT32 when they are the only volume on the disk. But Windows does NOT allow you to FORMAT the second partition FAT32. The QUESTION is: How to do all of this in Windows-native land.

2 Answers2

-1

You can use disk part. I put the rest of the words in parentheses, but you can use just the part before the parentheses to make entry faster. (I found this on Reddit):

Cmd

Diskpart

List disk

Sel(ect) disk [drive number]

Cle(an)

Convert gpt

Cre(ate) par(tition) Pri(mary) size=[size in mbytes]

Redo the last step until you have all partitions created. You can then use the 'list partitions' (lis par) command and 'Sel par [partition number]' to format these partitions. (format fs=[ntfs or fat32] quick)

Or right click on your start button to get the drive manager open and format the partitions from there.

-2

It appears you're running Windows. As such; Open Run from the Start menu, and type in the box: Diskmgmt.msc.

This will open the Disk Management application. The rest is fairly self explanatory. Right-click on your target disk. Choose the current partitions, and choose delete. When finished. You should be able to right-click the disk, and choose initialize. This last step will allow Windows to initialize the disk in a manner that Windows is comfortable with. Which will further allow you to slice it up in the fashion that you desire, and in a way that Windows understands. Which finally allows you to accomplish all this in Windows. That's what you were hoping to do. Right? :)

UPDATE: For those having trouble(s) with the solution above. You may be limited to the size of your second partition. Adjust (the size) as required (by your copy of Windows).

Lastly; I performed the above operation within my copy of Windows to a 128Gb USB stick without problem(s). But others have expressed problems (see UPDATE above for a possible solution).

somebody
  • 560