Read/Parse Binary files with Powershell

67,462

Solution 1

It seems that you have a binary file with text on a fixed or otherwise deducible position. Get-Content might help you but... It'll try to parse the entire file to an array of strings and thus creating an array of "garbage". Also, you wouldn't know from what file position a particular "rope of characters" was.

You can try .NET classes File to read and Encoding to decode. It's just a line for each call:

# Read the entire file to an array of bytes.
$bytes = [System.IO.File]::ReadAllBytes("path_to_the_file")
# Decode first 12 bytes to a text assuming ASCII encoding.
$text = [System.Text.Encoding]::ASCII.GetString($bytes, 0, 12)

In your real case you'd probably go through the array of bytes in a loop finding the start and end of a particular string sequence and using those indices to specify the range of bytes you want to extract the text from by the GetString.

The .NET methods I mentioned are available in .NET Framework 2.0 or higher. If you installed PowerShell 2.0 you already have it.

Solution 2

If you're just looking for strings, check out the strings.exe utility from SysInternals.

Solution 3

You can read in the file via Get-Content -Encoding byte . I'm not sure how to parse it though.

Share:
67,462
user1151295
Author by

user1151295

Updated on April 01, 2020

Comments

  • user1151295
    user1151295 about 4 years

    I'm trying to parse a binary file, and I need some help on where to go. I've looking online for "parsing binary files", "reading binary files", "reading text inside binaries", etc. and I haven't had any luck.

    For example, how would I read this text out of this binary file? Any help would be MUCH appreciated. I am using powershell.

    enter image description here