convert
嚯嚯 发表于 2020-06-29 11:08浏览次数:
该convert命令可以将 FAT 卷转换为 NTFS。
The convert command is used to change FAT volumes to NTFS.
目录:
1 convert 运行系统环境
2 convert 语法
3 convert 示例
convert 运行系统环境
Windows xp
Windows vista
Windows 2000
Windows 7
Windows 8
Windows 10
convert 语法
Windows Vista 及更高版本的语法
CONVERT volume /FS:NTFS [/V] [/CvtArea:file name] [/NoSecurity] [/X]
volume
|
指定驱动器号(后跟冒号),安装点或卷名。
|
/FS:NTFS
|
指定要转换为NTFS的卷。
|
/V
|
指定convert应该以详细模式运行。
|
/CvtArea:file name
|
在根目录中指定一个连续文件,它将作为NTFS系统文件的占位符。
|
/NoSecurity
|
指定转换后的文件和目录上的安全设置允许所有用户访问。
|
/X
|
如有必要,强制先卸除该卷。该卷的所有打开的句柄都将无效。
|
Windows XP 及更早版本的语法
CONVERT volume /FS:NTFS [/V]
volume
|
指定驱动器号(后跟冒号),安装点或卷名。
|
/FS:NTFS
|
指定要转换为NTFS的卷。
|
/V
|
指定convert应该以详细模式运行。
|
Windows Vista and later syntax
CONVERT volume /FS:NTFS [/V] [/CvtArea:file name] [/NoSecurity] [/X]
volume
|
Specifies the drive letter (followed by a colon), mount point, or volume name.
|
/FS:NTFS
|
Specifies that the volume to be converted to NTFS.
|
/V
|
Specifies that convert should run in verbose mode.
|
/CvtArea:file name
|
Specifies a contiguous file in the root directory that will be the place holder for NTFS system files.
|
/NoSecurity
|
Specifies that the security settings on the converted files and directories allow access by all users.
|
/X
|
Forces the volume to dismount first if necessary. All open handles to the volume will not be valid.
|
Windows XP and earlier syntax
CONVERT volume /FS:NTFS [/V]
volume
|
Specifies the drive letter (followed by a colon), mount point, or volume name.
|
/FS:NTFS
|
Specifies that the volume to be converted to NTFS.
|
/V
|
Specifies that convert should run in verbose mode.
|
convert 示例
convert d: /fs:ntfs
将d:驱动器(在此示例中为FAT卷)转换为NTFS卷。请注意,如果该卷不是FAT,例如NTFS或RAW,则此命令将产生错误。
convert d: /fs:ntfs
Convert the d: drive, which in this example is a FAT volume, to an NTFS volume. Note, if this volume is anything other than FAT, such as NTFS or RAW, this command generates an error.