I have this command
... | select-object name, fullname, @{Name = "MD5"; Expression = { (Get-FileHash $_.FullName -Algorithm MD5).Hash } }
How do I properly toLower the MD5 Hash?
I have this command
... | select-object name, fullname, @{Name = "MD5"; Expression = { (Get-FileHash $_.FullName -Algorithm MD5).Hash } }
How do I properly toLower the MD5 Hash?
Copyright © 2021 Jogjafile Inc.
looks like ..
.Hash.ToLower()did the trick