Create one single exe

  • Thread starter Thread starter Daniel Kirsch
  • Start date Start date
D

Daniel Kirsch

Hi,
I want to create one single executable from my bunch of application
files. The executable should run a defined executable from that
collection. There is no need for compression or something like that. I
just want to give one single file to my users which just needs to be
started without any further dialog.

Any ideas?

Thanks
Daniel
 
Daniel said:
Hi,
I want to create one single executable from my bunch of application
files. The executable should run a defined executable from that
collection. There is no need for compression or something like that. I
just want to give one single file to my users which just needs to be
started without any further dialog.

Any ideas?

Thanks
Daniel

One thing you might try to do is creating a html file with links to the
programs, as a kind of shell. over those applications. Burn the lot of them
on CD, create an auto run, and the HTML page will be displayed whenever the
cd is inseted (provided autorun is tuned on)

You also might use delphi, flash, assembler (all can be created as a single
executable file) to create a kind of application launcher.

But a program that swallows other programs to launch them? I never heard of
it.

Jeroen de Bruijn
 
Daniel Kirsch said:
Hi,
I want to create one single executable from my bunch of application
files. The executable should run a defined executable from that
collection. There is no need for compression or something like that. I
just want to give one single file to my users which just needs to be
started without any further dialog.

Any ideas?

Thanks
Daniel

I had a little freeware called "theWRAP!" or smething like that, wrapping
all your exes/datas into one exe that would have quickly unpacked all the
stuff when launched.

Googl'ing... please wait...
http://trondoc.ezwebtech.com/theWRAP/
....et voila!

Byez
 
Hi,
I want to create one single executable from my bunch of application
files. The executable should run a defined executable from that
collection. There is no need for compression or something like that. I
just want to give one single file to my users which just needs to be
started without any further dialog.

Any ideas?

Thanks
Daniel


Maybe the freeware version of Setup2GO?
Give it a try at:
http://dev4pc.com/setup2go.html

Hope it will help.

Alison.
 
NoWhereMan said:
I had a little freeware called "theWRAP!" or smething like that, wrapping
all your exes/datas into one exe that would have quickly unpacked all the
stuff when launched.

Googl'ing... please wait...
http://trondoc.ezwebtech.com/theWRAP/
...et voila!

Byez

--


Now that's cool! Great for my jump drive....


--

Woodzy

http://www.rtdos.com (alt OS for games based on the classics)
http://rtdos.com/debate (charged political discussion)
http://rtdos.com/forum (rtdos message boards)
http://rtdos.com/rtdos (rtdos active developer chat)

http://rtdos.com/chat
Chats scheduled every Thursday @ 7PM MDT (0100 GMT) and
every Sunday @ 1PM MDT (1900 GMT)
 
Hi,
I want to create one single executable from my bunch of application
files. The executable should run a defined executable from that
collection. There is no need for compression or something like that. I
just want to give one single file to my users which just needs to be
started without any further dialog.

Try this. It launches up to 5 EXE files at the same time with just 1 click.

http://www.nonags.com/files/redirec...er.co.uk/downloads/Multi-Program-Launcher.exe

Sorry for the direct link. The home page is gone.

Bob

Remove "kins" to reply by e-mail.
 
Hi,
I want to create one single executable from my bunch of application
files. The executable should run a defined executable from that
collection. There is no need for compression or something like that. I
just want to give one single file to my users which just needs to be
started without any further dialog.

Any ideas?

Thanks
Daniel

GSfx Wizard
http://www.gdgsoft.com/index.aspx

regards

Dud
 
Daniel said:
Hi,
I want to create one single executable from my bunch of application
files. The executable should run a defined executable from that
collection. There is no need for compression or something like that. I
just want to give one single file to my users which just needs to be
started without any further dialog.

Any ideas?

Thanks
Daniel

A program that does this will need to load each file into the Windows
TEMP folder to execute them. WinZip does this when you press the
"Install" button. If you could use a program that does the same thing
as WinZip's install button but executes a batch file this would work.
For now I would include your files in a tar/rar/zip file with the batch
file and instruct the user to execute the batch file.
 
Back
Top