English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

What I want to do is to convert some simple batch files into .exe files. My another target is to embed one file into another for the purpose of security of data.

2007-03-09 22:51:23 · 3 answers · asked by dassaikat 2 in Computers & Internet Software

3 answers

take your .bat files and program them into VB, or something similar.

I can't remember the name of the encryption program, but many companies have a program that will 'encrypt' the data, to be un-encrypted with a key, -by another person.

2007-03-09 22:59:07 · answer #1 · answered by MK6 7 · 0 0

you can't convert them into exe files, bat files are text files that have commands on each line.
if you want to merge your bat files just copy/paste the commands in a single bat file.

you can also create an application (exe file) that performs the same commands
programming languages have specific objects/commands that allow you to run other programs, copy files etc.

2007-03-10 07:02:35 · answer #2 · answered by Deep Thought 5 · 0 0

you can use BASIC language command "SHELL" to run your Batch file commands, using this line and assuming that xyz.bat is your Batch file

SHELL "xyz.bat"
END

then you have to compile the code so that you have an EXE file

regards,

2007-03-10 07:07:02 · answer #3 · answered by thuraya t 1 · 0 0

fedest.com, questions and answers