Get-ChildItem -path C:\Temp -Recurse -File | Group-Object -property | Get-FileHash | Group-Object -property Hash | Where-Object { $_.count -gt 1 } | ForEach-Object { $_.Group | Select-Object Path, Hash }
Get-ChildItem -path C:\Temp -Recurse -File | Group-Object -property | Get-FileHash | Group-Object -property Hash | Where-Object { $_.count -gt 1 } | ForEach-Object { $_.Group | Select-Object Path, Hash }