Tony
Tony

Reputation: 9571

Powershell toLower Get-FileHash

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?

https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/get-filehash?view=powershell-7.1

Upvotes: 0

Views: 2327

Answers (1)

Tony
Tony

Reputation: 9571

looks like ...Hash.ToLower() did the trick

Upvotes: 2

Related Questions