Is it possible to edit a binary file using Windows command line?

sam picture sam · Apr 5, 2013 · Viewed 18.3k times · Source

Is there a way in Windows to edit a binary file, from the command line? i.e. a way that could be written into a batch file?

I want to be able to edit a single byte, at a known position, in an existing file.

This existing question[1] is solved, but that's a Linux solution. I'm looking for something similar for Windows.

Background

There's a bug in GTA 1 when downloaded from Steam whereby the save-game data file gets corrupted on exit. As a result, the game can be played fine the first time but subsequently crashes. It turns out this can be fixed by changing the 5th byte in the file (i.e. the byte at address 0x04) from x00 to x06[2].

I can do this in Python easily, e.g.:

with open("PLAYER_A.DAT", "rb") as f:
    bytes = f.read()
bytes = bytes[:4] + '\x06' + bytes[5:]
with open("PLAYER_A.DAT", "wb") as g:
    for b in bytes: g.write(b)

Ideally though I'd rather do this in a batch job that does the following:

  • fixes the data file
  • launches GTA

I could make something that works for me (using Python), but that wouldn't help random other people who don't have Python (yes I know it's easy to get & install, but still). Similarly, there is a freeware available that claims to do just this, but I don't want to run a random .exe on my PC, and I don't think anyone else should either. For that reason, I'd like to present a batch file, that people can inspect, and - if they're happy with what it does - run for themselves.

Thanks for you help!

[1] CLI: Write byte at address (hexedit/modify binary from the command line)

[2] http://forums.steampowered.com/forums/showthread.php?t=1597746

[edit] Fixed up the Python script, as I found it didn't work as-is (file.read() returns an immutable object, so you can't just update one of the values).

Answer

ComFreek picture ComFreek · Apr 5, 2013

I think PowerShell is a perfect tool for this task. It's available for XP or higher and is automatically shipped since Windows 7:

Just create a *.ps file with this content:

$bytes = [System.IO.File]::ReadAllBytes("PLAYER_A.DAT");
$bytes[4] = 0x06;

[System.IO.File]::WriteAllBytes("PLAYER_A.DAT", $bytes);
& "C:\Path-To-GTA1-Exe-File.exe"

Note that one has to enable unsigned PowerShell scripts:

  1. Start PowerShell as an administrator

  2. Run this command: Set-ExecutionPolicy RemoteSigned


You could also use VBScript but the script will be somewhat longer because it wasn't designed for reading binary files (you have to use ADODB.Stream objects).

Here is a compilation of helper functions: http://www.motobit.com/tips/detpg_read-write-binary-files/