Format with exFATHow to format your
drives/cards/cartridges/sticks with exFAT:
In Windows Vista/newer 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/SDUC (Ultra Capacity) Card Formatter (free).
Secure Digital (SD)/miniSD/microSD/SDHC (High Capacity)/SDXC (eXtended Capacity)/microSDXC/SDUC (Ultra Capacity) 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 + downloads.
Windows Vista SP2 + newer include Fixed Card Driver!With the appropriate exFAT drivers installed Windows NTx OSes (2000/newer)
can (re)partition and (re)format HDD, SSD, NVMe + 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/newer 32-bit) and in %windir%\SYSWOW64 (WinXP/newer 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/newer 32-bit) and in %windir%\SYSWOW64 (WinXP/newer 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):
Click/Touch inside block of text below ➜ right-click ➜ Copy [Ctrl+C]:
-----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 7
Have
fun!
