Board index » delphi » Installer

Installer


2005-01-28 12:04:15 AM
delphi161
Can you suggest me a good installer program which is freeware and easy to
use ? Because i don't have so much time to learn how it is working.
- Igor
 
 

Re:Installer

Quote
Can you suggest me a good installer program which is freeware and easy
to use ? Because i don't have so much time to learn how it is working.
InnoSetup.
www.jrsoftware.org/isinfo.php
--
Sergey M
www.usysware.com/dpack/ - GExperts like VS.NET add-ins
www.usysware.com/blog/
 

Re:Installer

"Sergey M" <XXXX@XXXXX.COM>writes
Quote
InnoSetup.
www.jrsoftware.org/isinfo.php

agree 100%
Mark
 

Re:Installer

Sergey M writes:
Quote
>Can you suggest me a good installer program which is freeware and
>easy to use ? Because i don't have so much time to learn how it's
>working.

InnoSetup.
www.jrsoftware.org/isinfo.php
Seconded. It has a basic level of scripting which covers most
eventualities, but it also offers a pascal scripting engine (the
excellent Innerfuse one) with which I imagine you could do just about
anything.
Functionalilty aside, it produces very nice, professional looking
installs which do everything that the commercial packages do. Your
users won't know the difference.
--
Carl
 

Re:Installer

I agree. I have been using it since 1999. Great program and just keeps
getting better.
Sergey M writes:
Quote
>Can you suggest me a good installer program which is freeware and easy
>to use ? Because i don't have so much time to learn how it is working.


InnoSetup.
www.jrsoftware.org/isinfo.php

 

Re:Installer

Thank you, that is great !!
"Sergey M" <XXXX@XXXXX.COM>writes
Quote
>Can you suggest me a good installer program which is freeware and easy to
>use ? Because i don't have so much time to learn how it is working.

InnoSetup.
www.jrsoftware.org/isinfo.php

--
Sergey M
www.usysware.com/dpack/ - GExperts like VS.NET add-ins
www.usysware.com/blog/




 

Re:Installer

Sergey M writes:
Quote
>Can you suggest me a good installer program which is freeware and
>easy to use ? Because i don't have so much time to learn how it's
>working.

InnoSetup.
www.jrsoftware.org/isinfo.php
Second that
--
Best regards
Fikret Hasovic fikret.fbtalk.net
TAMP R&D Team
FirebirdSQL Foundation member.
- Join today at www.firebirdsql.org/ff/foundation
JEDI VCS contributor
jedivcs.sourceforge.net/
Posted with XanaNews 1.17.1.2
 

Re:Installer

Quote
InnoSetup.
www.jrsoftware.org/isinfo.php
Don't even consider anything else.
Inno is everything an installer should be - simple and customisable.
It is a fantastic freeware program.
Cheers,
Chris
 

Re:Installer

I use the Gentee installer. it is one I downloaded years ago as freeware. I
don't know if it;s still free though.
"Igor" <XXXX@XXXXX.COM>writes
Quote
Can you suggest me a good installer program which is freeware and easy to
use ? Because i don't have so much time to learn how it is working.

- Igor


 

Re:Installer

We have an application that needs to install SQL Express, which
requires .NET 2.0, run some SQL scripts, hit a web service
to obtain an ID, and other normal install activities.
We are looking at what installer to use. Our top two candidates
are MSI and Inno Setup.
Which do you think would be more appropriate?
Thanks,
Brad.
 

Re:Installer

Brad White writes:
Quote
We have an application that needs to install SQL Express, which
requires .NET 2.0, run some SQL scripts, hit a web service
to obtain an ID, and other normal install activities.

We are looking at what installer to use. Our top two candidates
are MSI and Inno Setup.

Which do you think would be more appropriate?
FWIW:
I've constructed some relatively basic installs with InnoSetup, and
have plans to include activities such as those above in future
installs. I wouldn't be surprised if InnoSetup could handle it all. The
InnoSetup newsgroups are invaluable for finding out.
I also looked into MSI and ran away screaming. <g>
--
Dave Nottage [TeamB]
 

Re:Installer

Brad White writes:
Quote
We have an application that needs to install SQL Express, which
requires .NET 2.0, run some SQL scripts, hit a web service
to obtain an ID, and other normal install activities.

We are looking at what installer to use. Our top two candidates
are MSI and Inno Setup.

Which do you think would be more appropriate?

Thanks,
Brad.


Inno Setup should be able to handle all that with ease.
You can do Delphi script right in the setup and if there is something
the pascal script cannot do you can include a Delphi DLL for extra
functionality.
MSI is super cryptic and difficult to use unless you have something like
WISE for MSI or what not, you can spend a huge chunk of change for a MSI
installer environment.
 

Re:Installer

"Vassilis D" <XXXX@XXXXX.COM>writes
Quote
Installaware :)
Isn't that the one slowing down our RAD studio installs?
 

Re:Installer

Nullsoft NSIS works fine for me.
"Brad White" <XXXX@XXXXX.COM>escribi?en el mensaje
Quote
We have an application that needs to install SQL Express, which
requires .NET 2.0, run some SQL scripts, hit a web service
to obtain an ID, and other normal install activities.

We are looking at what installer to use. Our top two candidates
are MSI and Inno Setup.

Which do you think would be more appropriate?

Thanks,
Brad.


 

Re:Installer

Brad White writes:
Quote
We have an application that needs to install SQL Express, which
requires .NET 2.0, run some SQL scripts, hit a web service
to obtain an ID, and other normal install activities.

We are looking at what installer to use. Our top two candidates
are MSI and Inno Setup.

Which do you think would be more appropriate?

Thanks,
Brad.


Well that will depend on whether you need an MSI based installer - if
you are aiming your tool at network installations, you may find that
some of your clients require MSI.
If not, the Inno shouldn't have too much trouble with what you want to
do, it is a great tool. Otherwise, if you have to go MSI, then try
InstallAware.
Cheers,
Dave