Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

NTFS File Format

Status
Not open for further replies.

bpi

Programmer
Sep 25, 2002
55
US
I have 3 HDs in my desktop. C drive is already in NTFS file system format. I am trying to convert my other 2 HDs system format from FAT32 to NTFS. How do I do this in XP Pro without reformat these HDs ??

Thanks,

Ching-Ho Cheng
 
Convert
Converts FAT and FAT32 volumes to NTFS.

Syntax
convert [volume] /fs:ntfs [/v] [/cvtarea:FileName] [/nosecurity] [/x]

Parameters
volume
Specifies the drive letter (followed by a colon), mount point, or volume name to convert to NTFS.
/fs:ntfs
Required. Converts the volume to NTFS.
/v
Specifies verbose mode, that is, all messages will be displayed during conversion.
/cvtarea:FileName
For advanced users only. Specifies that the Master File Table (MFT) and other NTFS metadata files are written to an existing, contiguous placeholder file. This file must be in the root directory of the file system to be converted. Use of the /CVTAREA parameter can result in a less fragmented file system after conversion. For best results, the size of this file should be 1 KB multiplied by the number of files and directories in the file system, however, the convert utility accepts files of any size.
For more information about using the /cvtarea parameter, see "File Systems" at the Microsoft Windows XP Resource Kits Web site.(
Important

You must create the placeholder file using the fsutil file createnew command prior to running convert. Convert does not create this file for you. Convert overwrites this file with NTFS metadata. After conversion, any unused space in this file is freed. For more information about the fsutil file command, see Related Topics.
/nosecurity
Specifies that the converted files and directory security settings are accessible by everyone.
/x
Dismounts the volume, if necessary, before it is converted. Any open handles to the volume will no longer be valid.

Remarks
You must specify that the drive should be converted when the computer is restarted. Otherwise, you cannot convert the current drive.
If convert cannot lock the drive (for example, the system volume or the current drive), it offers to convert the drive the next time the computer restarts.
The location of the MFT is different on volumes that have been converted from previous version of NTFS, so volume performance might not be as good on volumes converted from Windows NT.
Volumes converted from FAT to NTFS lack some performance benefits compared to volumes initially formatted with NTFS. On converted volumes, the MFT might become fragmented. In addition, on converted boot volumes, NTFS permissions are not applied after the volume is converted.

Examples
To convert the volume on drive E to NTFS and display all messages, type:

convert e: /fs:ntfs /v
 
Thanks for the details information. What is the purpose of placeholder file ? can I do the convert without creating this placeholder file ??

Thanks,

Ching-Ho Cheng
 
I've never created/used a placeholder file. It's only needed if you use the /cvtarea option.
Just a simple "convert c: /fs:ntfs" and a reboot will fix you up nicely.

________
Remember, you're unique... just like everyone else.
 
Thank you for the placeholder file information. I will just do a simply convert and then reboot.

Ching-Ho Cheng
 
I did the conversion last night without the placeholder folder creation. It worked fine.

Thanks,

Ching-Ho Cheng
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top