Search found 22 matches

by stondesign
10 Mar 2019 12:10
Forum: DOS Batch Forum
Topic: Edit Binary File
Replies: 17
Views: 16438

BIN FILE

I have shared the BIN file

Fiat 500 1.3 Mjt 75CV
by stondesign
10 Mar 2019 12:08
Forum: DOS Batch Forum
Topic: Edit Binary File
Replies: 17
Views: 16438

Edit Binary File

Hello friends! I need a script ... Who could help me? Basically I would like to create a program to edit a binary file. That is, it should look for the hexadecimal in the offsets and replace them with the ones I set them. Obviously you do not have to give a search command, but you have to go looking...
by stondesign
31 Oct 2018 09:40
Forum: DOS Batch Forum
Topic: replacing a hex sequence in a binary file with a hybrid .bat?
Replies: 18
Views: 20869

Re: replacing a hex sequence in a binary file with a hybrid .bat?

Hi can you replace the first script on the script below? @echo off REM EGR OFF rem Creazione Cartella File DPFErasePack sul Desktop MKDIR "%userprofile%\desktop\File DPFErasePack" if exist "%userprofile%\desktop\File DPFErasePack" Erase /F /S /Q "%userprofile%\desktop\File DPFErasePack" rem Backup F...
by stondesign
25 Oct 2018 07:00
Forum: DOS Batch Forum
Topic: replacing a hex sequence in a binary file with a hybrid .bat?
Replies: 18
Views: 20869

Re: replacing a hex sequence in a binary file with a hybrid .bat?

the code of first is on windows 10 that windows 7 but not to adapt the changes ...

let's face it maybe we understand the error
by stondesign
24 Oct 2018 14:45
Forum: DOS Batch Forum
Topic: replacing a hex sequence in a binary file with a hybrid .bat?
Replies: 18
Views: 20869

Re: replacing a hex sequence in a binary file with a hybrid .bat?

Hi, basically I have 2 car maps in Binary files 1 original (original.ori) 1 already modified without EGR valve (egroff.bin) I would like to create a small program that dragging the file (originale.ori) on the .Bat let me intervene on the bits that I can edit. Example I would like to transform the bi...
by stondesign
24 Oct 2018 07:47
Forum: DOS Batch Forum
Topic: replacing a hex sequence in a binary file with a hybrid .bat?
Replies: 18
Views: 20869

Re: replacing a hex sequence in a binary file with a hybrid .bat?

Hello, I created a program in Batch that basically should modify a Binary file to which the bit values should change 00084750: 37 B9 00084751: AC 92 but when I go to use the string jrepl "x37 \ xAC \ x01" "xB9 \ x92 \ x01" / m / x / f original.bin / O modified.bin Saving the File When I then compare...
by stondesign
23 Oct 2018 17:31
Forum: DOS Batch Forum
Topic: replacing a hex sequence in a binary file with a hybrid .bat?
Replies: 18
Views: 20869

Re: replacing a hex sequence in a binary file with a hybrid .bat?

Hi...

jrepl "\xAA\xBB\xCC "\x11\x22\x33" /m /x /f hex.bin /o -

is it possible to save the file with a new name?