Suvarna Garge (Editor)

Contig (defragmentation utility)

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Operating system
  
Windows

License
  
Proprietary freeware

Type
  
Defragmentation

Website
  
Microsoft Technet

Developer(s)
  
Mark Russinovich, Sysinternals

Stable release
  
1.8 / July 4, 2016; 7 months ago (2016-07-04)

Contig is a command line defragmentation utility for Windows currently owned by Microsoft subsidiary SysInternals.

Contents

Operation

Contig is designed to defragment individual files, or specified groups of files, and does not attempt to move files to the beginning of the partition. Unlike the Windows built-in defragmenter tool, Contig can defragment individual files, individual directories, and subsets of the file system using wildcards.

Contig does not move any data except that belonging to the file in the question, so the amount it can defragment a file is limited to the largest contiguous block of free space on a system. Use of contig exchanges decreased file fragmentation for increased free space fragmentation.

Combined usage of the -s parameter and the wildcard symbol * allows whole directories and drives to be defragmented: for example,

contig -s C:*

will defrag all the files on hard drive C. The -s parameters means to browse directories recursively. Directories, for example, can be defragmented with the following command. This will help speed up accessing files in a directory with many hundreds or thousands of files.

for /R /D %a in (*.*) do start /b contig -q "%a" > nul

Adding the -v parameter to the command runs contig in verbose mode.

For instance:

contig -v -s C:*

When the filesystem is NTFS, contig can also analyse and defragment the following files:

$mft, $LogFile, $Volume, $Attrdef, $Bitmap, $Boot, $BadClus, $Secure, $UpCase, $Extend

For instance:

contig -v -s $mft

A small change to the Windows registry allows entire folders to be defragmented from Windows Explorer. New unfragmented files with specified name and length can be created.

Derivative programs that use Contig include Power Defragmenter GUI and Multiple Applicator 6.8. A related freeware product by the same author is PageDefrag.

Limitations

  • Contig can't defragment files accessed through directory mount points (as opposed to drive letter mounts). Using an additional (temporary) drive letter will circumvent this problem. See subst command.
  • Contig doesn't work in Telnet sessions, but it is possible to execute it on remote machines using Sysinternals PsExec.
  • References

    Contig (defragmentation utility) Wikipedia