defrag (对本地卷中的文件进行优化和碎片整理,以提高系统性能)

小猪老师 发表于 2020-06-22 10:35
浏览次数:
在手机上阅读

Microsoft Defrag是一种软件实用程序,能够组织和优化硬盘驱动器上的文件以提高系统性能。它是在MS-DOS 6.0中首次引入的。

查看英文版

目录

1 defrag 运行系统环境

2 windows Vista 和更高的语法

3 windows XP 和更早的语法

4 MS-DOS 6.0和更早的语法

5 defrag 示例

defrag 运行系统环境

MS-DOS 6.0及更高版本以及Windows的所有版本

windows Vista 和更高的语法

DEFRAG| /C | /E[] [/H] [/M | [/U] [/V]]

其中省略了(传统碎片整理),或如下所示:

/A | [/D] [/K] [/L] | /O | /X

或者,要跟踪某个卷上正在进行的操作:

defrag/T

参数:

/A 在指定的卷上执行分析。
/C 在所有卷上执行该操作。
/D 执行传统碎片整理(这是默认项)。但在分层卷上,传统碎片整理只在容量层上执行。
/E 在除了指定卷以外的所有卷上执行该操作。
/H 以标准优先级运行该操作(默认值低)。
/K 在指定的卷上执行碎片合并。
/L 在指定的卷上执行重新剪裁。
/M 在后台并行在每个卷上运行该操作。最多 n 个线程并行优化存储层。
/O 为每种介质类型执行适当的优化。
/T 跟踪指定卷上已在进行的操作。
/U 将操作进度打印到屏幕。
/V 打印包含碎片统计信息的详细输出。
/X 在指定卷上执行可用空间合并。
DEFRAG| /C | /E[] [/H] [/M | [/U] [/V]]

Where is omitted (traditional defrag), or as follows:

/A | [/D] [/K] [/L] | /O | /X

Or, to track an operation already in progress on a volume:

defrag/T

Parameters:

/A Perform analysis on the specified volumes.
/C Perform the operation on all volumes.
/D Perform traditional defrag (this is the default).
/E Perform the operation on all volumes except those specified.
/H Run the operation at normal priority (default is low).
/K Perform slab consolidation on the specified volumes.
/L Perform retrim on the specified volumes.
/M Run the operation on each volume in parallel in the background.
/O Perform the proper optimization for each media type.
/T Track an operation already in progress on the specified volume.
/U Print the progress of the operation on the screen.
/V Print verbose output containing the fragmentation statistics.
/X Perform free space consolidation on the specified volumes.

查看英文版

查看中文版

windows XP 和更早的语法

defrag volume
defrag volume [/a]
defrag volume [/a] [/v]
defrag volume [/v]
defrag volume [/f]
/A 分析体积并显示分析报告的摘要。
/V 显示完整的分析和碎片整理报告。
与/ a组合使用时,仅显示分析报告。单独使用时,将同时显示分析和碎片整理报告。
/F 强制对卷进行碎片整理,无论是否需要对其进行碎片整理。
defrag volume
defrag volume [/a]
defrag volume [/a] [/v]
defrag volume [/v]
defrag volume [/f]
/A Analyzes the volume and displays a summary of the analysis report.
/V Displays the complete analysis and defragmentation reports.

When used in combination with /a, displays only the analysis report. When used alone, displays both the analysis and defragmentation reports.

/F Forces defragmentation of the volume regardless of whether it needs to be defragmented.

查看英文版

查看中文版

MS-DOS 6.0和更早的语法

下面是MS-DOS Defrag 6.0及更高版本中可用开关的列表。 请注意,这些命令在Windows 95及更高版本中不起作用,并且Windows在后台运行时不应运行碎片整理。

DEFRAG Drive: /F /U /S:order /B /Skiphigh /LCD /BW /G0 /A /H
Drive: 要整理的驱动器号。
/F 确保文件之间没有剩余空间。
/U 如果在文件之间发现任何空白,则保留空白空间。
/S:order

以特定的排序方式对文件进行排序。

N =字母顺序。
-N =反向字母名称顺序。
E =按字母文件扩展名顺序。
-E =反向字母文件扩展名顺序。
D =按日期顺序(最早到最晚)。
-D =反向日期顺序(从旧到新)。
S =按文件大小(小到大)。
-S =按文件大小(大到小)。
/B 完成碎片整理后,重新启动计算机。
/Skiphigh 将碎片整理加载到常规内存中。
/LCD 在LCD彩色模式下启动碎片整理。
/BW 在黑白模式下启动碎片整理。
/G0 禁用鼠标和字符集。
/A 在自动模式下启动碎片整理。
/H 移动隐藏的文件。

Below is a listing of available switches in MS-DOS Defrag 6.0 and above. Note that these commands will not work in Windows 95 and above and defrag should not run while Windows is running in the background.

DEFRAG Drive: /F /U /S:order /B /Skiphigh /LCD /BW /G0 /A /H
Drive: Drive letter that you want to defragment.
/F Insures that no empty space remains between files.
/U Leaves empty space if any is found between files.
/S:order Sorts files in specific sort.
N = Alphabetic name order.
-N = Reverse alphabetic name order.
E = In alphabetic file extension order.
-E = Reverse alphabetic file extension order.
D = In date order (earliest to latest).
-D = Reverse date order (old to new).
S = By file size (small to large)
-S = By file size (large to small)
/B Reboot the computer after completing defrag.
/Skiphigh Load defrag into conventional memory.
/LCD Start defrag in LCD color mode.
/BW Start defrag in black and white color mode.
/G0 Disable mouse and character set.
/A Start defrag in automatic mode.
/H Move hidden files.

查看英文版

查看中文版

defrag 示例

defrag c:

整理主硬盘驱动器并更正所有碎片文件。

defrag c:

Defrag the main hard drive and correct any fragmented files.

查看英文版

查看中文版

其他命令行

date | dir | debug | disable | diskcomp | diskcopy | dosshell | doskey | diskpart | driverquery | drivparm | dumpchk | deltree | del |

如此好文,分享给朋友
发表评论
验证码:
评论列表
共0条