Read/Parse Binary files with Powershell Read/Parse Binary files with Powershell powershell powershell

Read/Parse Binary files with Powershell


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.


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


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