15.1.8 Compare an MD5 Hash
Do the file hashes match?
Your answer: No
Correct answer: No
Explanation
In this lab, your task is to use MD5 hash files to confirm that the Release.zip file was unaltered as follows:
- Use Windows PowerShell to generate a file hash for Release.zip.
- Examine the release821hash.txt file for the original hash.
- Compare the original hash of the Release.zip file to its calculated hash in PowerShell to see if they match.
Complete this lab as follows:
- Right-click Start and select Windows PowerShell (Admin).
- At the prompt, type cd \downloads and press Enter to navigate to the directory that contains the files.
- Type dir and press Enter to view the available files.
- Type get-filehash Release.zip -a md5 and press Enter to view the MD5 hash.
- Type get-content release821hash.txt and press Enter to view the known hash contained in the .txt file.
- Type "calculated hash" -eq "known hash" and press Enter to determine if the file hashes match.
- In the top right, select Answer Questions.
- Answer the question.
- Select Score Lab.
Comments
Post a Comment