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
1 answer

How to delete user.config file after uninstalling c# application

My C# application takes settings from user & saves them to a user.config file for further use. I want to delete that user.config file which application creates after installation so that after re-installation user can again select the settings…
0
votes
1 answer

How to open a web page at the end of installation using visual studio C ++ deployment?

Is there any way in visual studio 2010 C++ setup deployment to open a webpage at the end of installation? I can do this with Inno Setup, but I don't want to be in trouble with another setup. I simply want to link a webpage in Visual Studio Setup…
0
votes
2 answers

.net setup project force repair

I am allready working a day or so on this probem and fail to figure it out. So I have a .Net setup project with bootstrap setup.exe that I would like to "force reinstall" from command line I see in the command line parameters that there is a switch…
Jester
  • 3,069
  • 5
  • 30
  • 44
0
votes
1 answer

MS Access data base reading in c# .exe project

I have created .EXE setup of C# Data Base (MS Access Data Base) Application using this link Create C# Setup. Actually i have only one windows form in my project where i can INSERT and GET the data from MS Access data base.It retrieves data from data…
Pir Fahim Shah
  • 10,505
  • 1
  • 82
  • 81
0
votes
1 answer

What is the easiest way to create setup for MS WORD addin? How care about versions compability?

I'm developing addin compatible with 2003,2007,2010 and 2013 MS Word versions and XP(not crittical), Vista, Windows 7. Important note - I'm working with free SharpDevelop IDE, target framework is 4.0. First of all, I should find installer for…
user2104560
0
votes
1 answer

Error adding dll file into Setup Project

I'm using Visual Studio 2008 to create a new Setup project. I'm trying to add a file (dll) to the Application Folder, there is nothing else in the project or in the solution. But I get a way too generic error : The operation could not be completed
0
votes
1 answer

Visual Studio setup project freezes

All, I am having an issue when installing a project in a production environment, the installer (VS setup project) runs its course, installs shortcuts/files, sits on completing setup, and never gets to the "finished" step. Logs show that custom…
willthiswork89
  • 617
  • 1
  • 4
  • 17
0
votes
1 answer

InstallShield LE - Is it possible to create a pure web setup project. If so, how?

I have begun the hard work of converting an old Web Setup project to InstallShield LE. So I have been searching around on how to do this. And my GOD how messy it is. I did follow one of those guides. It seems I have to install some dummy data to…
Wolf5
  • 16,600
  • 12
  • 59
  • 58
0
votes
0 answers

How to create installer with custom action in vs2010

VS2010 has a Setup Project template, I want to use it to create my setup package. Below are what I have done: Create a Setup Project. In the FileSystem Panel, right click Application Folder, Select Add -> File, then select my dll. The dll and its…
James
  • 2,570
  • 7
  • 34
  • 57
0
votes
1 answer

Run a prerequisite silently along with application setup in visual studio 2010

I am trying to create a setup of my application along with all of it's prerequisites. I want iTunes as prerequisite for my application, and want to install it silently along with my application. i.e. I want to install my prerequisite silently. I…
0
votes
1 answer

Visual Studio Setup Project - check for directory existence

I am attempting to install a library DLL using a Visual Studio Setup Project in VS2010. The installer must install the DLL into the Target Application folder, as well as install the DLL into the appropriate folder for each instance of MS SQL Server…
0
votes
0 answers

Silently installing Itunes with other application

Can we silently install Itunes with any commercialized application(.exe) made in Visual Studio? Does apple have any restrictions on silently installing Itunes? How can we silently install another application with a setup made from Visual Studio…
BAPSDude
  • 331
  • 1
  • 4
  • 16
0
votes
1 answer

Deploying XNA application which uses Kinect, using Setup Project

I've created a game using Visual Studio 2010 C# using Kinect in XNA-4. I created a Setup project for that. The setup and the installed game works fine in my system; but when I deployed it (with the setup of pre-requisites) in my friends laptop, it…
Shashwat
  • 2,538
  • 7
  • 37
  • 56
0
votes
1 answer

How to include database file and SQL Server Express installer for Deployment with VS2010

I am using Visual Studio 2010 and SQL Server 2008 Express I would like to deploy my project with setup and deployment project and would like to include the SQL Server database file and SQL Server 2008 Express installer, so the user can easily…
donata
  • 43
  • 6
0
votes
1 answer

uninstall another application before installing msi package

I have a setup project 'B' in VS2008. I want check for whether an application 'A' is installed on a machine or not. If it is installed, then before installation of application 'B' I want to uninstall application 'A'. Is there any way to do this? I…