Skip to main content

How to verify your downloaded files using MD5 Checksum on Windows?

MD5 stands for Message Digest version 5. The MD5 algorithm takes a file (the “message”) of any size, and reduces it down to a code that looks like this: “ac30ce5b07b0018d65203fbc680968f5″ (the “digest”). The brilliant thing about the MD5 algorithm is that if the message changes by so much as a single byte, it will produce a completely different digest.

An MD5 sum is a string of letters and numbers that acts like a fingerprint for a file. If two files have the same MD5 sum, the files are exactly alike - which is why MD5 "fingerprints" can verify whether or not your downloaded file got corrupted in transit, hence it is used to verify the integrity of files, as virtually any change to a file will cause its MD5 hash to change.

MD5 digests have been widely used in the software world to provide some assurance that a transferred file has arrived intact. For example, file servers often provide a pre-computed MD5 (known as md5sum) checksum for the files, so that a user can compare the checksum of the downloaded file to it.

So how do we verify it?

So, to say we actually use CertUtil in command prompt to do this.

If you're interested to find out all the functions you can do with CertUtil simply type the command "certutil -v -?" (without quotes) and you'll see a list of all working commands.

All 'verbs' listed (Scroll to see more)
So, now you must be pretty familiar how to do it. Let's get into it.

Step 1: Open the folder where your downloaded file is.

Mark the file name properly with its extention. E.g. here, my filename is "winmd5free.zip". If file extentions are not showing you can enable that in folder options.

Search for Folder Options in Start (Menu) then uncheck "Hide extentions for known file types" and apply the settings.. The extentions will be visible now.


Step 2: Enter "C:\Windows\System32\cmd.exe" or simply "cmd" (without quotes) in the address bar and hit enter. The Command Prompt window will be shown automatically.
Step 3: In the CMD window, type the command "certutil -hashfile MD5" replaceing "-hashfile" with your filename you want to check. Hit enter.



You will be shown the MD5 string. Match it with the one you find on the website you have downloaded from. If it matches, you're file is O, or else you have to obtain a copy again. That's it.

Comments

  1. Excellent...it is a new thing I learn in midnight..
    You explained it properly .
    Anybody must not need an extra line .

    ReplyDelete

Post a Comment

Popular posts from this blog

Now you can whisper to Alexa

Amazon’s Alexa can now listen and respond to whispers, and she will whisper back. Now first, this might set off another wave of anxiety for privacy advocates. Your virtual assistant is not only spying on you and potentially recording or storing your conversations, now she can do even if you tried to keep your voice down. Amazon’s team just made that sensitive microphone function even more acutely. Video demonstrating Alexa whisper: So, why do we need to whisper in the first place? Will it come handy in anyway? Yes. If you whisper, “Echo, play a lullaby,” for the infant who’s almost asleep in your arms, Echo will whisper back, “Here’s a station for lullabies from your Amazon Music library,” instead of screaming at  full startling volume. What's more? Whisper is not the only important feature that will come to Amazon Echo devices this year, we also have bunch of new ones. Guard : Guard will let you say, “Alexa, I’m leaving,” and the device will automatically acti...

Microsoft Edge Arrived for Android and iOS

Last week, Microsoft made a pretty surprising announcement. The company revealed that it would bring its Edge browser to iOS and Android, making it easier for existing Edge users (and possible converts) to take their browsing history, bookmarks, and other data with them. Now the beta app is available for download from the Play Store for some countries. But others can download the APK to give it a try. So how is the browser itself? Well, it feels like a mix of desktop Edge and mobile Chrome. The start page has your frequently-visited pages with a search bar, along with stories from MSN below that (which you can turn off). The UI is split into an address bar and Reading List/History/Bookmarks button at the top, and everything else at the bottom. Both bars pull away as you scroll down the page, and re-appear when you swipe up. Familiar Microsoft Edge features like the Hub allow users to organize the web in a way that cuts through the clutter, making it easier to find, view and manage thei...

How to build new Metro UI apps with Visual Studio?

The new Modern UI apps are pretty fascinating , aren't they? Building these apps with older versions of Visual Studio like the 2010 edition is pretty cumbersome. While the newer 2015 and 2017 editions of Visual Studio come with Expression Blend, which helps to build those. But what if you want to build them with yuor old IDE itself, in the VS 2010? Yes, you can.  You need the Bunifu Framework. It's availabel as a trial for 7 days or you can buy rhe oaid version. let me show you how it works You can download it from its official site . After installing the app, provide your email and your trial period is good to go for 7 days. Then open Visual Studio. Under toolbox add a new tab with whatever name you would like to give. Then right click on it and hit Choose items. In the dialogue box shown, choose the .dll file by clicking the Browse button, Finally click open and go further. After all the controls being added you can use them to create your Modern UI apps hands down. You can j...