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
5
votes
0 answers

Visual Studio Setup Project add GAC assembly as Detected Dependencies

I am using Visual Studio 2017 and I am using this extension from Microsoft to provide the Visual Studio 2017 the ability to create setup project. I created new setup project and I added the primary output of an WPF application to that setup project.…
Hakan Fıstık
  • 16,800
  • 14
  • 110
  • 131
5
votes
1 answer

Why does my Visual Studio Setup Project launch IE when installation is complete?

I have this Visual Studio 2010 Setup Project for installing my application. On (clean) Windows 7 32bit installations, it starts Internet Explorer after installing my application. On my own machine (Windows 7 64bit), this doesn't happen. Do you have…
Daren Thomas
  • 67,947
  • 40
  • 154
  • 200
5
votes
2 answers

How to delay in VB Script?

How can I delay a Vb Script? The following codes did not work for me: wscript.sleep 1000 Delay 10 Sub Delay( seconds ) Dim wshShell, strCmd Set wshShell = CreateObject( "Wscript.Shell" ) strCmd = "%COMSPEC% /C (PING -n " & ( seconds +…
ladiesman1792
  • 243
  • 2
  • 5
  • 21
5
votes
1 answer

Typescript ES5 Configuration

I want to target ES5 so I setup in my Visual Studio project file: ES5 false
daniel
  • 34,281
  • 39
  • 104
  • 158
5
votes
3 answers

Default Location to System Drive in Setup and Deployment Project

I have a setup and deployment project in Visual Studio 2010 The default location of Application Folder is set to C:\[Appname] The problem is that if there is no drive C: in the machine the app is being installed, the installer will crash with an…
5
votes
1 answer

Where does visual studio setup project get the primary output file?

I am trying to create a setup project for my C#-application in VS 2010. I am using an post built event during the creation of the c#-application. This event appends data to the binary of the application, because i need this data later. The Problem…
Findus
  • 303
  • 1
  • 4
  • 17
5
votes
3 answers

Created MSI but get installation package is not supported by this processor type error

I'm new to MSI's. I've created a Window's Service that is the output project for my MSI. My local machine is a 64-bit Win 7 machine. The server I am trying to install on is a Win 2008 32-bit server running on a VM. I'm using .NET 4…
evodev
  • 183
  • 1
  • 2
  • 11
5
votes
0 answers

Install Jammer Locate Java Runtime

I am stuck with my Install Jammer setup creation for an application that requires Java and MySQL. The problem is, when I don't have a Java version in the system , it prompts the user to select the java path and automatically goes to the Browser…
Gapchoos
  • 1,422
  • 5
  • 20
  • 40
5
votes
2 answers

Build only the VS Setup project via command line

I have a solution that contains many projects and a setup project (.vdproj). I want to be able to build ONLY the setup project via command line. I tried to use devenv /build Debug "C:\\MySolution\MySolution.sln" /project…
Sharon
  • 83
  • 1
  • 9
5
votes
4 answers

How to make the msi overwrite program if a previous version exist?

I am using Visual Studio 2010, I am working on a windows application and while trying to make an automatic updater for it faced a serious problem. When the program find a new version and trying to install it, it couldn't because of two reasons: 1-…
Hassanation
  • 866
  • 2
  • 14
  • 29
5
votes
1 answer

Force overwrite of App.config during installation

We currently have 4 installers for our client software: ClientSetupTest ClientSetupProduction ClientUpdateTest ClientUpdateProduction The only differences between them are that Setup contains the Crystal Reports redistributable files, and Update…
Chris Doggett
  • 19,959
  • 4
  • 61
  • 86
5
votes
2 answers

visual studio setup project : update doesn't work

I am facing a problem for several days and after many research I couldn't find anything that fit with my case. Here's the thing : I'm working with Visual Studio 2010 on a solution that contains several projects and a Setup Project. I want the setup…
5
votes
2 answers

Installer only installs to root on x64 systems

My MSI installer created with Visual Studio 2008 refuses to install the app in the designated directory and instead will only install the app in the root directory. If I take the same MSI and install in on an x86 system the installer installs the…
Jeff R
4
votes
1 answer

Windows setup/installer project: Forcing installation into "Program Files", not x86?

My boss needs an installer to setup software onto one of our client's machines. He wants the software to be installed specifically into "C:\Program Files\HisApplicationName", not "C:\Program Files (x86)\HisApplicationName". I know the correct…
goalie35
  • 786
  • 3
  • 14
  • 34
4
votes
2 answers

Using SlowCheetah's app.config transformations with Setup projects

I'm using the SlowCheetah XML Transforms extension to handle web.config-like transformations with app.config. That part works great. I added a setup project and configured it to include the project output of the first project. I noticed that when I…
jrummell
  • 42,637
  • 17
  • 112
  • 171