QUOTE (Andavari @ Sep 18 2008, 08:10 AM)

This is a link everyone should read if they are planning to covert FAT to NTFS. You may want to look especially close at the caveats and the /cvtarea switch.
If you haven’t already did the conversion, you can improve your system performance by using the convert command with the /Cvtarea switch. The defragmenter cannot move the first fragment of the Master File Table (MFT), the index of all files and folders. So when you do the NTFS conversion, the MFT will most likely be fragmented. With the /Cvtarea switch, the MTF is created in a single contiguous space.
You hinted your experience is limited, so
YOU have to decide to use this procedure or not and it aplies to Windows XP. I'm not sure about Vista.
1. Defragment the drive you plan to convert. In addition to defragmenting your files, it will consolidate your free space, which is what we want at this time.
2. Calculate the size of the new MFT file. At this point your drive is still FAT, so you are limited to a maimum size of 4Gb. Default size of MFT is 12.5 % of the partition size. If your partion is larger than 40Gb, use 4 Gb for the MFT size.
3.Create the new contiguous file equal in size to the calculated value using the Fsutil command. For example
fsutil file createnew c:\newmftfile.txt 4000000000The filename can be any legal file name you prefer. Make it a txt type. Note that the file size is in bytes and I have used 4GB in the example. Substitute your calculated value if appropriate.
4. Execute the convert command :
convert c: /fs:ntfs /cvtarea:newmftfile.txtsubstitute the correct drive letter and file name if necessary
5. You may need to restart your PC to complete the conversion