Before you start
Objectives: learn how to convert from FAT to NTFS and from NTFS to FAT in Windows XP.
Prerequisites: you should know about different types of files systems that can be utilized in Windows.
Key terms: convert, fat, ntfs, file, partition, drive, command, conversion, format
Example Configuration
In this demonstration we will see how to change from one file system to another. In first example we have an NTFS partition that we want to convert back to FAT32. The only way to do that is to format the partition. To format a partition we have to right-click it, and then select โFormatโ.
Image 252.1 โ Format Volume
In our example, we have a partition that is 4.9 GB in size. We will convert it to FAT32, leave the default allocation size and enable โQuick Formatโ. When we are ready, we will click on the โStartโ button. Remember, we have to backup all our files because formatting will destroy them. When we click โStartโ, the warning message appears. We will click OK.
Image 252.2 โ Warning
If everything went fine, the โFormating Completeโ message appears.
Image 252.3 โ Format Complete
To check the File System of our partition, right-click it and select its Properties.
Image 252.4 โ Partition Properties
In our second example we want to convert from FAT32 to NTFS. We can do this by using the โformatโ utility, however, we can also make the conversion without erasing any data from our partition. To do that we can use the โconvertโ utility. To open โconvertโ, we have to go to the Command Prompt. Letโs go to the Start Menu, Run, enter CMD, and click OK.
Image 252.5 โ Run Menu
Image 252.6 โ CMD
Here we have to enter the command โconvertโ, then the drive that we want to convert (E in our example), then โ/fs:โ, and then file system that we want to convert to. In our example the command will look like this: convert e: /fs:ntfs.
Image 252.7 โ Convert Utility
When we hit โEnterโ, it will ask us to enter volume label for drive E:. In our example we will enter โVolumeโ as our volume label.
Image 252.8 โ Volume Label
When we hit โEnterโ again, the conversion process will start. In our example everything went fine.
Image 252.9 โ Conversion Complete
Letโs go to โMy Computerโ and check the file system on E partition. As we can see, the file system is now NTFS.
Image 252.10 โ NTFS File System
Remember
To convert from NTFS to FAT we have to format our partition. Formating will erase all data on the partition. To convert from FAT to NTFS we can use the โconvertโ command line utility. When using โconvertโ utility, no data is being erased.
Commands that are mentioned in this article
- convert e: /fs:ntfs โ CMD command which will convert E partition to the NTFS file system