Any Built-In Checksum utility for Windows 10 using CRC-32?

19,224

Solution 1

There is a way to get the CRC-32 on Windows (since Win 7):

  1. Right-click the file(s) you wish to get the CRC-32 for and click Send toCompressed (zipped) folder.
  2. Open the ZIP file using Windows Explorer, set the view to details.
  3. Right-click on the detail header and select the CRC-32 column to be visible.
  4. Resize columns so the CRC-32 is visible.
  5. There you go!

Explorer providing CRC-32

Solution 2

7-Zip provides an additional Windows Explorer context menu entry from which checksums can be calculated:

  1. Right-click the file you wish to get the CRC-32 for. A context menu appears.
  2. Select the CRC SHA submenu entry.
  3. Select any of the available algorithms: CRC-32, CRC-64, SHA-1 or SHA-256 to calculate the respective checksum, or select "*" to calculate all of them and additionally BLAKE2sp.
Share:
19,224

Related videos on Youtube

Umair Malhi
Author by

Umair Malhi

Principal Software Engineer and Representative for Client. Work in different technologies including MVC .NET, PHP, MS SQL Server, MySQL.

Updated on September 18, 2022

Comments

  • Umair Malhi
    Umair Malhi over 1 year

    Is there any Built-In Checksum utility for Windows 10 using CRC-32? I checked different answers which are old and mention certUtil, but that does not support CRC-32 or CRC-64.

    Update: I had also checked Is there a built-in checksum utility on Windows 7?, however, that's an old question and does not specifically asks for CRC-32 and Windows 10 may have support for it now. That's why asking this.

    • Seth
      Seth almost 5 years
    • Seth
      Seth almost 5 years
      There is no default utility to do this and as you mention certutil doesn't support CRC (certutiil -hashfile -?). CRC is also a very basic checksum and others might proof to be more reliable depending on what you're doing.
    • AtomiX84
      AtomiX84 almost 5 years
      Get-FileHash in powershell but does not support CRC
    • Umair Malhi
      Umair Malhi almost 5 years
      @Seth yes I checked that, it also mentions that CRC-32 is not supported. but as I mentioned in question, it's old post so may be now there is support for that. I don't have much idea about checksum though.
    • Seth
      Seth almost 5 years
      Is there a specific reason you're looking for CRC32? Why use that if you could use MD5 or SHA?
    • Umair Malhi
      Umair Malhi almost 5 years
      so is that mean if the checksum value is given in CRC32 we can sum how verify it from MD5 or SHA as well? means we don't need to get CRC32 at all on windows? I don't have much idea about how does it work, I think for verifying given CRC32 checksum value, we have to get CRC32 value of a file and match with given value
  • James
    James almost 4 years
    Just tried this and it doesn't work (Windows 10)
  • Taylor Hillegeist
    Taylor Hillegeist almost 4 years
    What doesn't work? I retried this method and it works just as well as it did on win 7.
  • James
    James almost 4 years
    "CRC-32" is not a column I can enable to view in a .zip details tab on my Win10 machine
  • Taylor Hillegeist
    Taylor Hillegeist over 3 years
    Can I ask which version of windows you have? I am using the enterprise edition so perhaps there are functional differences?
  • Fusseldieb
    Fusseldieb over 3 years
    Windows 10 Pro user here, not available too
  • Nicolas Melay
    Nicolas Melay over 3 years
    Works here on Windows 10 1909, not sure what you're doing guys. Of course if you have any archiver handling zip files instead of Explorer, you need to right-clic the file > Open with > Windows Explorer.
  • Umair Malhi
    Umair Malhi over 3 years
    Thanks. But this is the same way as already given by @Taylor before
  • bszom
    bszom about 2 years
    These options only exist if you have 7-Zip installed.