BAT2EXEC
From Just Solve the File Format Problem
(Difference between revisions)
(Created page with "{{FormatInfo |formattype=electronic |subcat=Executable envelopes |released=1990 }} '''BAT2EXEC''' is a DOS utility that converts a Batch file to a [[DOS executable (.com)|...") |
(→Identification) |
||
(One intermediate revision by one user not shown) | |||
Line 5: | Line 5: | ||
}} | }} | ||
'''BAT2EXEC''' is a DOS utility that converts a [[Batch file]] to a [[DOS executable (.com)|COM file]] that (hopefully) works the same. It was developed by Ziff Communications and Douglas Boling. | '''BAT2EXEC''' is a DOS utility that converts a [[Batch file]] to a [[DOS executable (.com)|COM file]] that (hopefully) works the same. It was developed by Ziff Communications and Douglas Boling. | ||
+ | |||
+ | It was originally released via an article in the August 1990 issue of PC Magazine. | ||
== Discussion == | == Discussion == | ||
Line 10: | Line 12: | ||
== Identification == | == Identification == | ||
− | Files compiled by v1. | + | Files compiled by v1.2-1.3 start with bytes assembled from the "INIT CODE" section of the source code, observed to be these 32 bytes: |
− | + | fc bd 20 01 8b 6e 00 8b a6 02 00 8b 9e 04 00 b4 | |
+ | 4a cd 21 a1 2c 00 89 86 1a 00 8b 9e 00 00 ff e3 | ||
+ | |||
+ | Files compiled by v1.5 have an ASCII signature at offset 3: "{{magic|Compiled by BAT2EXEC 1.5}}". | ||
== Software == | == Software == | ||
Line 24: | Line 29: | ||
* {{CdTextfiles|simtel/stmsdos9709/disk1/DISC1/BOOTUTIL/BOOTLOG2.ZIP|BOOTLOG2.ZIP}} → LOGTIME.COM | * {{CdTextfiles|simtel/stmsdos9709/disk1/DISC1/BOOTUTIL/BOOTLOG2.ZIP|BOOTLOG2.ZIP}} → LOGTIME.COM | ||
* {{CdTextfiles|simtel/stmsdos9709/disk1/DISC1/ARCUTILS/SZV102F.ZIP|SZV102F.ZIP}} → ZIPVIEW.COM | * {{CdTextfiles|simtel/stmsdos9709/disk1/DISC1/ARCUTILS/SZV102F.ZIP|SZV102F.ZIP}} → ZIPVIEW.COM | ||
+ | |||
+ | == Links == | ||
+ | * [https://books.google.com/books?id=cSMUxSP5pKgC&lpg=PP1&pg=PT419#v=onepage&q&f=false Original BAT2EXEC article in PC Magazine], Aug. 1990, p. 415 |
Latest revision as of 18:38, 21 August 2024
BAT2EXEC is a DOS utility that converts a Batch file to a COM file that (hopefully) works the same. It was developed by Ziff Communications and Douglas Boling.
It was originally released via an article in the August 1990 issue of PC Magazine.
Contents |
[edit] Discussion
More research is needed regarding version 1.0. There are probably at least two versions of it, with one named "BAT2COM" instead of "BAT2EXEC".
[edit] Identification
Files compiled by v1.2-1.3 start with bytes assembled from the "INIT CODE" section of the source code, observed to be these 32 bytes:
fc bd 20 01 8b 6e 00 8b a6 02 00 8b 9e 04 00 b4 4a cd 21 a1 2c 00 89 86 1a 00 8b 9e 00 00 ff e3
Files compiled by v1.5 have an ASCII signature at offset 3: "Compiled by BAT2EXEC 1.5
".
[edit] Software
[edit] Sample files
- CCAL9116.ZIP → EQ.COM
- BOOTLOG2.ZIP → LOGTIME.COM
- SZV102F.ZIP → ZIPVIEW.COM
[edit] Links
- Original BAT2EXEC article in PC Magazine, Aug. 1990, p. 415