Is there a way to do a checksum on windows machines like on unix/linux machines?
I cannot download any 3rd party tools and wondering if there was something similar natively?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can get get the MD5 hash of the file. You would essentially parse the file and pass it into this function as a string. e.g.
(taken from here)
…or as a file:
Taken from here Calculate MD5 Checksum for File