Advertisement
guyrleech

convert UTF8 binary registry values to human readable

May 28th, 2020
517
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Get-ItemProperty -Path HKCU:\Software\7-Zip\FM -Name *History | Select *History|%{ $_.PSObject.Properties | ForEach-Object { $_.Name ; [Text.Encoding]::ASCII.GetString( [Text.Encoding]::UTF8.GetBytes( $_.Value , 0 , $_.Value.Length )) }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement