Any one know any good program or how to convert .bat files into .exe files? :rolleyes: ;)
[gloworange]Falcon21[/gloworange]
Printable View
Any one know any good program or how to convert .bat files into .exe files? :rolleyes: ;)
[gloworange]Falcon21[/gloworange]
There used to be files around that would do this many years ago....... I haven't used one in years and think I last got one off an old bbs system.
There's one here and if you do a google for bat2exe you'll find a lot more.
Hope this helps
QBASIC 4.5 will do just fine... in fact- i love BASIC :D
simply wrap "shell " around each batch line, it'l work...
anyway- you can download many free version of BASIC/BASICa
of course this can be done in C, Perl, etc... any programming suite that offers system shell...
i'll look around , someone might offer a product that specifically does .bat>.exe conversions?
/edit
here we go, i found this in the link that TigerShark posted... http://nlsn.free.fr/batch-down/Bat2Exe.ZIP
Thanks a lot :p
Thanks a lot :p
dogey method:
write the .bat file commands inside a program, say for example C++, create a file (which will be named "something.bat"), stream the .bat commands from the program to the file and call the file inside the program.
warning: you may accidentally learn something by taking this approach, and the file may be quite big.
dogey method:
write the .bat file commands inside a program, say for example C++, create a file (which will be named "something.bat"), stream the .bat commands from the program to the file and call the file inside the program.
warning: you may accidentally learn something by taking this approach, and the file may be quite big.
Or use perl
system('c:/batch.bat');
Next use perl2exe to create the executable.
Or use perl
system('c:/batch.bat');
Next use perl2exe to create the executable.