Search found 6 matches
- 18 Jun 2016 16:37
- Forum: DOS Batch Forum
- Topic: searching and changing a special value within a file
- Replies: 26
- Views: 16948
Re: searching and changing a special value within a file
once again, thanx everybody for joining the conversation. I checked every code-hint you guys send me, but unfortunately there is no positive outcome (yet). but before posting error massages, it might be more clever to send someone my setup. because my problem is not really knowing where the problem ...
- 17 Jun 2016 15:07
- Forum: DOS Batch Forum
- Topic: searching and changing a special value within a file
- Replies: 26
- Views: 16948
Re: searching and changing a special value within a file
oh wait... I'm confused right now. folders and files are outside of DOSBox, but the executables do have to run under/with/in DOSBox. this does change things, doesn't it? this is what should happen: ⋅ a batch-file is calling a patchfile running in DOSBox ⋅ some unnamed processing ...
- 17 Jun 2016 13:05
- Forum: DOS Batch Forum
- Topic: searching and changing a special value within a file
- Replies: 26
- Views: 16948
Re: searching and changing a special value within a file
I assumed DOSBox . It would be important to know if your batch code will be run within DOSBox or cmd. I assumed a binary file and the posted content is a hex dump rather than the plain text content. EDIT: The batch script will be run within CMD but calls executables which need DOSBox to run with. A...
- 17 Jun 2016 03:21
- Forum: DOS Batch Forum
- Topic: searching and changing a special value within a file
- Replies: 26
- Views: 16948
Re: searching and changing a special value within a file
This should work: jrepl and findrepl are native batch files you can find on this forum (use google) find "27 00" <"file.ext" >nul && ("c:\folder\program a" & call jrepl "27 00" "" /f "file.ext" /o -) find "4E 20" <&qu...
- 17 Jun 2016 02:43
- Forum: DOS Batch Forum
- Topic: searching and changing a special value within a file
- Replies: 26
- Views: 16948
Re: searching and changing a special value within a file
first of all thank you all very much for your responses! There's good information there, but what problem are you having? my actual problem is having no experience with batch routines especially not with DOS compatibility. everything you can see above is pure presuming. what I want the batch script ...
- 16 Jun 2016 03:57
- Forum: DOS Batch Forum
- Topic: searching and changing a special value within a file
- Replies: 26
- Views: 16948
searching and changing a special value within a file
Hallo everybody, one thing prerecord : when it comes to scripting I am a totally noob! so I am asking for your patience. But of course I am trying to be as precise as possible. the setting : I have a program running under DOS-Box. This program is called by a batch file. After quitting this program i...