Im googling this for so many months, maybe here any one knows, how can i convert for example
Code: Select all
@echo off
echo hello dostips world
pause>nul
in to a working exe, is that possible?
Regards
Moderator: DosItHelp
Code: Select all
@echo off
echo hello dostips world
pause>nul
Code: Select all
;============================================================================
; BAT2EXEC.COM - a batch file compiler
;
; Syntax:
; BAT2EXEC filename
;
; Revision History:
;
; Version 1.0 Initial Release PC Magazine Vol 9 Num 14
;
; Version 1.1 Bug Fixes July 19, 1990
;
; Version 1.2 Bug Fixes July 28, 1990
; Added ability to read large BAT files.
;
; Version 1.3 PATH cmd fix. Oct. 3, 1990
; Echo cmd fix
; Other small bug fixes.
;
; Version 1.4 Redirection to soft May. 12, 1991
; parameter bug fixed.
;
; Version 1.5 Fixed lost label bug June 20, 1991
; Parse like BAT files
;
;============================================================================
foxidrive wrote:That bat2exec only works with plain/simple msdos bat files and can't handle anything complex.
It doesn't work with the NT line of batch syntax, right?