Tool for comparing 2 binary files in Windows [closed]

If you want to find out only whether or not the files are identical, you can use the Windows fc command in binary mode:

fc.exe /b file1 file2

For details, see the reference for fc

Leave a Comment