how to check if a downloaded file is healthy and not corrupted?

adreno420

Prominent
Nov 18, 2017
60
0
630
hi, sometimes when I download a file off of Internet the file is corrupted and and I can't check them all one by one to find out which one is corrupted

Is there a easy way to find out which file is corrupted ?
 
Solution
most legitimate sites have SHA256 file signatures for you to compare your downloaded version with the one on their site. you can download any software in the internt that can do that for you. like for example my favorite ZIP tool 7zip. includes a drop down menu to do it instantly.

OR you can use powershell in the command console.
Get-Filehash -path c:\downloads\something.exe -algorithm SHA256 | fl

marksavio

Estimable
Dec 23, 2017
1,679
5
2,960
most legitimate sites have SHA256 file signatures for you to compare your downloaded version with the one on their site. you can download any software in the internt that can do that for you. like for example my favorite ZIP tool 7zip. includes a drop down menu to do it instantly.

OR you can use powershell in the command console.
Get-Filehash -path c:\downloads\something.exe -algorithm SHA256 | fl
 
Solution