Verify EasyBackupManager download — Windows
Use the downloaded SHA256SUMS.txt to confirm the integrity of the installer.
Steps
- Download the installer (e.g.
EbmSetup.exe) and the checksum file (SHA256SUMS.txt). - Open PowerShell in the folder containing both files.
- Run the following commands to compare the expected and actual hashes:
$expected = (Get-Content .\SHA256SUMS.txt).Split(" ")[0]
(Get-FileHash .\EbmSetup.exe -Algorithm SHA256).Hash -eq $expected If the last expression prints True, the checksum matches and the file is valid. If it prints False, do not run the installer — re-download and verify again.
Notes
- The checksum file generated by this site uses the format:
<sha256> <filename>(two spaces between hash and filename). - If the file names differ, adjust the filename in the command accordingly.
Back to Download Page — or Linux verification.