Format as FAT32 in Windows
Funny enough, I thought the only reason to use FAT32 anymore was due to transferring data between Mac and PC. Well, in comes Tesla. In order to use their “Sentry Mode,” you have to format your drive to FAT32. There are plenty of third-party apps you can download, but I don’t necessarily want to download something for single use. The one I suggest, if FDISK seems a little daunting, to take a look at is fat32format. It is a simple little program and is a ‘portable’ version (does not need to be installed). Check it out here: http://ridgecrop.co.uk/index.htm?guiformat.htm. If you are little more brave, here are the steps to do it on your own:
- In the Start menu, typeÂ
cmd
, and then right-click the entry for the cmd program and select Run As Administrator. - At the command prompt, enterÂ
diskpart
. The prompt line should now display “DISKPART”. - EnterÂ
list disk
. - EnterÂ
select disk X
, where X is the number of your selected disk. - EnterÂ
clean
. - EnterÂ
create partition primary
. - EnterÂ
select partition 1
. - EnterÂ
active
. - EnterÂ
format fs=fat32
. - EnterÂ
assign
. - EnterÂ
exit
.