Dear Mike and Kevin,

this is to notify a small correction I made to be able to verify my Fedora download in Windows.

In this page:

https://docs.fedoraproject.org/en-US/Fedora/25/html/Installation_Guide/sect-verifying-images.html

I changed this line >>>>>

> $expected_checksum = ((Get-Content $checksum_file | Select-String -Pattern $image) -split " ")[0].ToLower()

To this >>>

> $expected_checksum = ((Get-Content $checksum_file | Select-String -Pattern $image) -split " ")[3].ToLower()

Yes, just [0] for [3]. That made it work. Thank you for your work and happy Holidays.

Dan