Questions tagged [setup-project]

Programs used to create installers are generically called setup projects. In most cases you are probably using a tool (on Windows examples are Visual Studio, InnoSetup, WiX, Advanced Installer, Wise, InstallShield) to create the setup, so a more accurate and useful tag would be one for that specific tool.

Because the requisite process varies for each program and each computer, many programs (including operating systems) come with a general-purpose or dedicated installation program called an installer–a specialized program which automates most of the work required for their installation.

The program which create installer are setup project.

1630 questions
0
votes
2 answers

How to add option that User to select a location to install in .Net Setup Project while installing setup?

I have added Setup Project in my web Application for the user to host my project in their Machine in IIS... While installing my setup it default installed in C: Drive, not able to change the drive location while installing... How to Achieve this? I…
Stephen L
  • 351
  • 2
  • 6
  • 18
0
votes
1 answer

How to copy a file to application folder in set up project during insatllation. File is in set up folder

I have a xml file in the setup folder of a windows application. Now during the installation how do i copy this file to my application's folder so that it can be copied to this path C:\Program Files (x86)....... I can not add the file to the…
0
votes
2 answers

How to create a MSI property based on whether a file exists at a given path?

One of the conditions for showing some UI controls in my Setup application is based on whether a file exists. This check can't be done through custom actions since even the OnBeforeInstall event happens after install, and the dialog I want to alter…
Jader Dias
  • 162
  • 1
  • 9
0
votes
1 answer

How to allow user to install only if a given registry key doesn't have a certain value?

One of the conditions for running my installer is that a value in the registry should be different from "1", otherwise it would display an error message and quit. This can't be done through custom actions since even the OnBeforeInstall event happens…
0
votes
1 answer

Microsoft VC Runtime Requirement and SXS error for Setup Custom Action in Vista

I created a setup project with VS2005 for an application that I'm developing, which installs fine on Windows 2000 and XP, but when I try to run the installer on Vista, it gives the following error: There is a problem with this Windows Installer…
Adam Haile
  • 30,705
  • 58
  • 191
  • 286
0
votes
1 answer

Visual Studio 2010 Setup does not create added file

My problem should be plain and simple to solve, but google is not helping me today. I need to read/write a configuration file (config.xml) and, as i see so much problems with permissions with special folders, i decided for myDocuments. Now, from…
0
votes
1 answer

VS 2010 Set up project - Installing exe through custom action

I'm creating a set up poject using VS 2010. One of the third party exe should be installed through the custom action. I have done this and works fine. But requirement is to 1) First time when MSI is installed this exe should also be installed in…
Kurubaran
  • 8,696
  • 5
  • 43
  • 65
0
votes
1 answer

Visual Studio Setup project not registering DLL on upgrade

I have made an Outlook add-in and it works fine, I deploy it through an MSI and it registers the DLL correctly. I've been updating it and incrementing the build number of both the assembly and the setup project equally, however I now have a strange…
Matt
  • 1,436
  • 12
  • 24
0
votes
1 answer

Application packaging

I'm using Visual Studio to create my installation package. My application use some bitmap and other data file. I currently include these files in my setup project. Is there a way to embed these file in a kind of bundle package?
Martin Delille
  • 11,360
  • 15
  • 65
  • 132
0
votes
1 answer

How to create a web setup allowing the user to create new website and application pool?

I have to create a web setup with the user be able to create a new application pool and new website. I have been able to create new website and new application pool through custom action. For this purpose I have a windows dialog form to take input…
0
votes
0 answers

Proper setup creation for C# app with SQL Server database

I need a good advice for proper creation setup of C# app. I have got a C# application, created via VS 2010 and Entity Framework and a SQL Server database. For setup I'm using a standard VS Setup Project. How I can properly include my database into…
0
votes
1 answer

Visual Studio InstallShield Project building error about localized resources

I created an InstallShield setup project in Visual Studio 2012. In the Application Files section of Project Assistan, I added "Primary output" and "Localized resources" files by using Add Project Outputs button after that completed all other…
0
votes
1 answer

stop and uninstall service in visual studio setup and deployment

I have a windows service deployment project that could start the service automatically once i installed the setup file. I have passed the argument as -i in Custom Actions - Install. And then in in Custom Actions - Commit, I have put argument as…
0
votes
1 answer

Run a batch file after visual studio installation

Am having a windows service exe that starts xxx.exe. After i created a setup file, I cant able to launch the service automatically So I wrote a batch file having commands ( service.exe -i ). Can anyone tell me how to run a .bat file after…
0
votes
1 answer

How to separate different parts of a a non-monolithic application in VCSs?

We've got a pretty large project which consists of multiple different sub-projects. Each sub-project is being controlled on a mercurial repository. Recently I found it annoying that a new developer should clone lots of repositories (and probably…
semekh
  • 3,867
  • 2
  • 24
  • 34
1 2 3
99
100