PowerTip: Convert Data to Hexadecimal Output in PowerShell 5

Doctor Scripto

Summary: Use the Format-Hex cmdlet to produce hexadecimal output.

Hey, Scripting Guy! Question How can I use Windows PowerShell to put data in a binary key in the registry?

Hey, Scripting Guy! Answer In Windows PowerShell 5.0, you can use the Format-Hex cmdlet, for example:

‘This is meant to be binary’ | Format-Hex

$DataForRegistry=(‘This is meant to be binary’ | Format-Hex).Bytes

1 comment

Discussion is closed. Login to edit/delete existing comments.

  • J S 0

    10..15 | % tostring x
    a
    b
    c
    d
    e
    f

Feedback usabilla icon