Tips: The NTFS converted in this way is different from the one directly formatted. The specific solution is at:
http://www.3cworld.com.cn/news/2006/2/4210_1.html
Common partition formats include Fat16/32, NTFS, etc. In addition to selecting when directly formatting, converting partition formats can also be completed with the help of the Convert command. Especially when converting the Fat format to the NTFS format, the Convert command can realize content lossless conversion.
But many friends directly use "Convert X: /FS:NTFS" when converting. Although this conversion is not wrong, it is easy to make mistakes when converting, and even if there is no mistake, its performance will not be improved. Now we will introduce the correct conversion method to you.
We take the partition to be converted as drive E with a size of 20G. First, run the "CMD" command to open the command prompt window, and enter "Fsutil file createnew e:\testfile.txt 2500000000", where 2500000000 represents 12.5% of the total capacity of the partition. You can convert it according to your actual partition capacity. After the command is executed, you can use the built-in disk defragmenter of the system to use the generated placeholder file testfile.txt to perform a comprehensive defragmentation on drive E, and merge all available spaces on drive E into a continuous area.
After finishing the defragmentation, we return to the command prompt window again, and enter "Convert E: /FS:NTFS /Cvtarea:testfile.txt". After the command is executed, the conversion can be carried out. After the conversion is successful, the testfile.txt file will be automatically deleted. In this way, the converted disk space is continuous and complete, and the reading and writing speed can also be improved during access.
(Sun Yongyang)
http://www.microsoft.com/technet/prodtechnol/windowsserver2003/zh-chs/library/ServerHelp/3ae7b608-6eec-4a97-9760-471a590545e3.mspx?mfr=true
Key points
• Before running convert, you must first use the fsutil file createnew command to create a placeholder file. Convert does not create this file. Convert overwrites this file with NTFS metadata. After the conversion is completed, all unused space in this file will be released. For detailed information about the fsutil file command, see "Related Topics".
[
Last edited by electronixtar on 2006-12-25 at 07:25 AM ]