STRONGLY RECOMMENDED:In case you own USB flash drives, memory cards, cartridges +/- sticks formatted with the ancient, flawed, limited FAT32 file system you should
reformat them with the superior exFAT. This is why:
Nowadays overwhelming majority of computers, portables, devices and electronics:
servers, desktops, laptops, netbooks, terminals, tablets/smart phones, flat TVs/monitors, multimedia/streaming audio/video players/recorders transmitters/receivers, amplifiers/tuners/stereos, digital cameras/recorders, projectors, etc...
support exFAT for both reading and writing operations, even if some may do this unofficially (or undocumented) due to steep proprietary licensing fees.
:-(On the other hand, you
[the end user

] can safely jump into the 21st century, and take advantage of the full capacity of your drives/cards/cartridges/sticks and be able to use files
larger than 4 GB, as long as you own a computer/portable/device running a modern edition of Windows or Mac OS X.
See
next paragraph (further below) to learn how to format all your
external/removable/remote media with exFAT in Windows.
Format with exFATHow to format your drives/cards/cartridges/sticks with
exFAT:
In
Windows you can use a
3rd party exFAT formatting tool (freeware), or get
the official
Secure Digital (SD)/miniSD/microSD/SDHC (High Capacity)/SDXC (eXtended Capacity)/microSDXC Card Formatter (free).
Secure Digital (SD)/miniSD/microSD/SDHC
(High Capacity)/SDXC (eXtended Capacity)/microSDXC memory cards require Microsoft Windows Vista Pre-SP2/7 Pre-SP1/2008 Pre-SP2/2008 R2 Pre-SP1 Memory Cards >
32 GB Fixed Card Driver! ➜ See
WIC + MCCP + RAW Codecs for details + file downloads.
Windows
Vista SP2, 7 SP1, 2008 SP2, 2008 R2 SP1, 8, 8.1, 2012, 2012 R2, 10, 2016 + newer include Fixed Card Driver!With the appropriate exFAT drivers installed Windows NTx OSes
(2000, XP, 2003, Vista, 2008, 7, 8, 8.1, 2012, 10 + 2016) can (re)partition and (re)format hard, SDD + USB drives/partitions/volumes by using the built-in
Disk Management (a.k.a.
Logical Disk Manager) front end GUI
(which in turn uses
DiskPart.exe +
FORMAT.COM command line tools): Start button (orb)
➜ (All) Programs
➜
Administrative Tools
➜ Computer Management
➜ Storage
➜ Disk
Management.
You can also run this command from the
Run... box (hold down the
WinKey and press
R at the same time) or from a DOS console (
CMD):
DISKMGMT.MSCThis is the
complete version:
%windir%\SYSTEM32\MMC.EXE /S %windir%\SYSTEM32\DISKMGMT.MSCSee "
WINKEY SHORTCUTS" in TIPS95.TXT (part of
W95-11D.EXE).
Microsoft
Management Console (MMC) executable (
MMC.EXE) and this MMC snap-in (
DISKMGMT.MSC) are
both located in %windir%\SYSTEM32 (Win2000/XP/2003/Vista/2008/7/8/8.1/2012/10/2016 32-bit) and in %windir%\SYSWOW64 (WinXP/2003/Vista/2008/7/8/8.1/2012/10/2016 64-bit).
Or (re)format a drive/partition/volume in Windows Explorer/File
Explorer/Desktop shortcut/My Computer icon: highlight desired (must be writable) drive/partition/volume
letter/name in the right hand pane
➜ right-click on it
➜ select
Format... ➜ select desired
Capacity,
File System [NTFS, FAT32 or exFAT (only
with exFAT drivers installed)]
➜ select
exFAT ➜ select
Allocation unit size (Bytes) (you should
leave it at default value in order to use full drive/partition capacity)
➜ select
Volume label (type desired drive/partition/volume name)
➜ select
Format options [Quick Format +/- Enable Compression (NTFS only)]
➜ select
Quick Format
(leave all other options at default values)
➜ click the
Start button or press
Enter.
More details.
If you
prefer using an automated/unattended batch (.BAT)/command (.CMD) script which runs the Windows built-in
FORMAT.COM DOS console command line tool, this is an example of how to (re)format your
G:
drive/partition/volume with
exFAT default parameters and a new label
XFAT_007:
FORMAT G:
/FS:exFAT /V:XFAT_007 /QThis is the complete
version:
%windir%\SYSTEM32\FORMAT.COM G: /FS:exFAT /V:XFAT_007 /QMicrosoft DOS console Format (
FORMAT.COM)
command line tool is located in %windir%\SYSTEM32 (Win2000/XP/2003/Vista/2008/7/8/8.1/2012/10/2016 32-bit) and in %windir%\SYSWOW64 (WinXP/2003/Vista/2008/7/8/8.1/2012/10/2016 64-bit).
Hold down the
WinKey and press
R at
the same time to open the
Run... dialog box
➜ type
CMD ➜ press Enter or click OK to run this
command from a DOS box console to view all FORMAT.COM command line parameters:
FORMAT /?See "
WINKEY SHORTCUTS" in TIPS95.TXT (part of
W95-11D.EXE).
You can create/edit your .BAT/.CMD file in Notepad (%windir%\
NOTEPAD.EXE = where %windir% is usually C:\WINDOWS) or a
better plain text/ASCII editor
[free(ware)].
Then save it as
XFATFRMT.BAT or
XFATFRMT.CMD (example), and (optionally) save it inside a directory/folder found on your PATH
statement.
Run this command from a DOS console window to view all directories/folders listed in your
PATH:
PATHTo format any internal/external/removable/remote
drive/partition/volume by using this batch/cmd script, just modify it to include these 2 variables, and then type a drive letter and a drive label number after the file name (each separated by a
Space) whenever
running it:
%1 (substitute 1st number with your actual drive/partition/volume letter: from
D up to
Z) and
%2 (substitute 2nd number with an
actual integer number: from
0 up to
999):
-----Begin cut & paste here-----
@ECHO OFF
IF NOT "%OS%"=="Windows_NT" GOTO END
IF NOT EXIST %windir%\SYSTEM32\FORMAT.COM GOTO END
ECHO Y|%windir%\SYSTEM32\FORMAT.COM %1: /FS:exFAT /V:XFAT_00%2 /Q
:END
EXIT ------End cut & paste here------ |
In this example you are
formatting your
G drive/partition/volume with the
exFAT file system and giving it the new label
XFAT_007:
XFATFRMT G 7Have
fun!
