Windows 10 includes a tool to compare files, and here’s how to use it.

On Windows 10, “fc” is a command-line tool that comes built-in to the system, and it allows you to compare two similar files to determine how they changed over time. Usually, fc will be helpful for comparing simple text files, determining the changes made to a script, detecting if a file has been modified, and similar scenarios.

The tool can compare two similar files or the newest version against all the other files in the same location. And it includes options to examine the changes at the text level, or in Unicode, ASCII, or binary mode.

In this Windows 10 guide, you will learn steps to use the fc tool to compare files with Command Prompt.

VPN Deals: Lifetime license for $16, monthly plans at $1 & more

How to compare files with the fc command on Windows 10

To compare files with the fc command tool, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to browse to the folder with the files you want to compare and press Enter:

    cd PATH\TO\FILES

    In the command, update the path with the location of the folder with the files to compare.

    This example navigates to the Downloads folder:

    cd C:\Users\USERACCOUNT\Downloads

  4. Type the following command to compare two similar files and press Enter:

    fc filename1.txt filename2.txt

    In the command, replace filename1.txt and filename2.txt for the name of the files you want to compare.

    fc compare files command

    Source: Windows Central

  5. Type the following command to compare two similar files in ASCII mode and press Enter:

    fc /L filename1.txt filename2.txt

  6. Type the following command to compare two files displaying only the first line that is different and press Enter:

    fc /a filename1.txt filename2.txt

    fc compare two files showing first line

    Source: Windows Central

  7. Type the following command to compare two files in Unicode mdoe and press Enter:

    fc /u filename1.txt filename2.txt

    fc compare two files in Unicode mode

    Source: Windows Central

  8. Type the following command to compare two files in baniry mode and press Enter:

    fc /b filename1.txt filename2.txt

    fc compare two files in binary mode

    Source: Windows Central

  9. Type the following command to compare all the files (*.txt) in the same folder to the new file (filename2.txt) and press Enter:

    fc *.txt filename2.txt

    fc compare multiple files

    Source: Windows Central

  10. Type the following command to compare two files in different locations and press Enter:

    fc DRIVE:\PATH\TO\filename1.txt DRIVE:\PATH\TO\filename2.txt

    In the command, replace DRIVE for the storage location drive letter and \PATH\TO\filename1.txt and \PATH\TO\filename2.txt with the path and name of the files you want to compare.

    This example compares two files in different folders:

    fc C:\Users\USERACCOUNT\Downloads\filename1.txt C:\Users\USERACCOUNT\Downloads\new\filename2.txt

    fc compare two files in different location

    Source: Windows Central

  11. Confirm the output to see the difference between the files.

    Quick tip: You can view the list of options and more examples using the fc /? command.

Once you complete the steps, you will be able to see the difference between two similar files.

While the tool allows you to compare files, remember that this is a basic tool meant to use it with text files and extensions like .exe, .com, .sys, .obj, .lib, or .bin. You may be able to compare files like those from Microsoft Office or images, but you can only compare them at the binary level.

More Windows 10 resources

For more helpful articles, coverage, and answers to common questions about Windows 10, visit the following resources:

Leave a Reply

Discover more from Ultimatepocket

Subscribe now to keep reading and get access to the full archive.

Continue reading