473,668 Members | 2,491 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Which installer to use

Hi,
I need a installer for c#.net application
I'm using visual studio 2005,.net2.0 and sql server 2000
My application is windows application.
I have two installers in mind
1.Wise installer
2.Install shield installer
I don't know which one will be best.
Most probably both have same facility.
Could anybody suggest me which one will be best, as i'm planning to
purchase anyone

Mani

Feb 20 '07 #1
5 1550
pl**********@gm ail.com wrote:
Hi,
I need a installer for c#.net application
I'm using visual studio 2005,.net2.0 and sql server 2000
My application is windows application.
I have two installers in mind
1.Wise installer
2.Install shield installer
I don't know which one will be best.
Most probably both have same facility.
Could anybody suggest me which one will be best, as i'm planning to
purchase anyone
I'd use InstallAware over either of those. http://www.installaware.com/

You might be able to use the Visual Studio Deployment projects that are
included with VS2005 (and 2003 and 2002). They're not as full featured as
any of the commercial install builders, but they're sure easy to create and
use.

-cd
Feb 20 '07 #2
Hi,

<pl**********@g mail.comwrote in message
news:11******** *************@q 2g2000cwa.googl egroups.com...
Hi,
I need a installer for c#.net application
I'm using visual studio 2005,.net2.0 and sql server 2000
My application is windows application.
I have two installers in mind
1.Wise installer
2.Install shield installer
I don't know which one will be best.
Most probably both have same facility.
Could anybody suggest me which one will be best, as i'm planning to
purchase anyone
What is wrong with the setup solution shipped with VS ?
Feb 20 '07 #3
On 20 Feb, 15:06, "Ignacio Machin \( .NET/ C# MVP \)" <machin TA
laceupsolutions .comwrote:
Hi,

<plmanikan...@g mail.comwrote in message

news:11******** *************@q 2g2000cwa.googl egroups.com...
Hi,
I need a installer for c#.net application
I'm using visual studio 2005,.net2.0 and sql server 2000
My application is windows application.
I have two installers in mind
1.Wise installer
2.Install shield installer
I don't know which one will be best.
Most probably both have same facility.
Could anybody suggest me which one will be best, as i'm planning to
purchase anyone

What is wrong with the setup solution shipped with VS ?
My recommendation would be to use WiX (http://wix.sourceforge.net/)

It provides a much fuller control of the MSI that you create. Plus
all files are XML, not some custom binary format. This helps big time
when the installer scripts are in a code repository. Being able to
see what changes have been made can be very helpful.
Having spent a week trying to work out which of the changes someone
made to an Installshield file, stopped the install working correctly,
I really appreciate the benefit of being able to use a 'diff' to see
all the changes quickly and easily.

WiX also requires you to understand more of the windows installation
process. While this can mean more work and more effort in the short
term, it really affords a better ability to support problem installs
and debug other issue in the long run.

Feb 20 '07 #4
"Ignacio Machin ( .NET/ C# MVP )" <machin TA laceupsolutions .comwrote in
message news:%2******** *******@TK2MSFT NGP03.phx.gbl.. .
Hi,

<pl**********@g mail.comwrote in message
news:11******** *************@q 2g2000cwa.googl egroups.com...
>Hi,
I need a installer for c#.net application
I'm using visual studio 2005,.net2.0 and sql server 2000
My application is windows application.
I have two installers in mind
1.Wise installer
2.Install shield installer
I don't know which one will be best.
Most probably both have same facility.
Could anybody suggest me which one will be best, as i'm planning to
purchase anyone

What is wrong with the setup solution shipped with VS ?
Are you serious?

Feb 20 '07 #5
Hi,

"Kurt" <ku**@junk.comw rote in message
news:D0******** *************** ***********@mic rosoft.com...
>>
What is wrong with the setup solution shipped with VS ?

Are you serious?
Well, It has been enough for me so far ...

If you have a different opinion just say it
--
Ignacio Machin
machin AT laceupsolutions com
Feb 20 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
2758
by: Richard Hanson | last post by:
Over the last few days, I reinstalled Win2kSP2 to a spare harddrive I had just swapped into my Fujitsu LifeBook P1120 (long story <wink>). Subsequently, I DL'ed the newest Python alpha (2.4a2), and when trying to install it, I immediately got this error: This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.
3
2493
by: Arun Bhalla | last post by:
I'm borrowing some code from Pavel's Command Prompt Explorer Bar installer to use in my own explorer bar's installer. Recently I've been thinking that using an assembly version like "1.0.*" (hence, for example, "1.0.1304.25935") would be useful, at least for development and debugging purposes. (Someone please point out the cons to this idea!) Well, anyway, Pavel's installer basically exists to register the assembly, and unregister the...
2
5345
by: MENTAT | last post by:
Hi, I am trying to create an installer for my web application. So I added a web setup project to my solution (I am using VS.NET 2003). Been playing around with it since then and it basically works. Now, I am wondering if there is any way to change the directory that the installer installs the files to. I want to be able to put my files in a specified directory (user specified is good, but i don't mind hardcoding the path either) and...
3
1887
by: Brian Henry | last post by:
This has worked perfectly for the past year now all the sudden it will not compile the installer project correctly. All our source code is in a Source Safe database so every system we do this on should be identicle. On one system the installer project will compile correctly, but on two others it will fail with this error. ------ Rebuild All started: Project: Installer, Configuration: Debug ------ Building file 'T:\Current Builds...
1
1593
by: Henry Stock | last post by:
I am not really sure what news group this should be posted to. It has to do with a visual studio install project for a c# application. We have noticed that if any of the files installed by the installer are moved or deleted that this automatically triggers the installer the next time the application is started. While this would appropriate if the file in question were an executable, the files are actually report files. Clients want to...
0
1393
by: Richard | last post by:
All, There is a KB article pertaining to windows installer running every time an application starts - so I know it's an issue - but the KB article pertains to MS Office only. I am seeing the same behavior as the MS Office installer issue in my installer package. The behavior started happening after I added a custom installer step (implemented in C#) and the behavior stops if I remove my custom installer step.
5
1279
by: ad | last post by:
I have finished my web application which useing MSDE as database. I want to packet my web application and MSDE, dotFramework .. together as an installer program. How can I do that? Are there any good packet program like install shield for web application?
5
1586
by: jcrouse | last post by:
I saw an article, once, on how to package image file in the installer so they are not accessible to the end user. I want to say hidden, but I don't just mean the file attribute of the image file. Does anyone know of the article I'm speaking of or a link on how to embed (another poor choice of words) the image files in the executable? Thanks, John
0
908
by: plmanikandan | last post by:
Hi, I need a installer for c#.net application I'm using visual studio 2005,.net2.0 and sql server 2000 My application is windows application. I have two installers in mind 1.Wise installer 2.Install shield installer I don't know which one will be best. Most probably both have same facility. Could anybody suggest me which one will be best, as i'm planning to
0
8893
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8799
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8586
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8658
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7401
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6209
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5681
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4380
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2026
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.