Questions tagged [setup-deployment]

Microsoft Setup and Deployment Wizard for Visual Studio or the .NET framework

API documentation

Related links

820 questions
0
votes
1 answer

Let .Net framework be Localization

I add .Net framework to the deploying to be requirement, but when I try to setup my software, it is Chinese in the explanation(Maybe is I'm in Taiwan). Like the picture: I want the explanation (like the area of red eclipse in the picture) to be…
Shuinvy
  • 251
  • 2
  • 6
  • 23
0
votes
1 answer

"setup.exe is not a valid win32 application" error on ClickOnce Setup

I have winforms applicaton. I created a setup using click once. My applicaton is build in .NET 4.0 and x86 as platform target. It works on my .NET 4.5 Win 7 64 bit machine but on a .NET 4.0 64 bit Win Server 2003 machine it gives the exception…
gesus
  • 471
  • 1
  • 10
  • 24
0
votes
1 answer

Create Setup package runtime in .NET

I want to create one application which created Setup file for Window Desktop application runtime with all resource file which application needed. Is this possible? If yes then how I can do this?
Hiscal
  • 633
  • 2
  • 8
  • 14
0
votes
1 answer

Window service not returning any error and is stuck

I created a windows service basically its just creates a report and then exports it to pdf and emails. I ran the whole application in debug mode and it works perfectly fine. Now i created an installer for the windows service which installs it and it…
confusedMind
  • 2,573
  • 7
  • 33
  • 74
0
votes
1 answer

Publishing a project after migrating from visual studio 2010 to 2012

In my workplace, we are now in a process of migrating from VS 2010 to VS 2012. Everything seemed to be working smoothly until I started testing the deployment of our application. As some of you probably know, the setup projects were discontinued in…
Avi Turner
  • 10,234
  • 7
  • 48
  • 75
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
2 answers

Repair set up option in setup installation?

I made a setup file for c#.net application and installed it now when I restart the setup it is showing me the following error: Another version of this product is already being installed. Installation of this version can not continue. I want to…
Mogli
  • 1,972
  • 11
  • 34
  • 67
0
votes
1 answer

Configure recovery methods for windows service via Visual Studio Deployment project.

I have created an installer with Visual Studio Deployment project to install a windows service. I need to add more feature like: 1] Recovery methods like, Restart the service on first failure, restart the service on second failure. 2] Stop the…
SVI
  • 1,631
  • 3
  • 22
  • 30
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
0 answers

Why prerequisites doesn't show framework 2.0?

In control panel> Add or remove programs it is showing microsoft framework 2.0 service pack 2 but when i create setup then in prerequisites it is not showing me the option to select framework 2.0. I also tried installing framework 2.0 again but it…
Mogli
  • 1,972
  • 11
  • 34
  • 67
0
votes
3 answers

Deploying with TeamCity

Our team started a solution which consists of 4 projects - a desktop app, 2 web app, a win- and a web-services. We decided to use TeamCity as a CI server and decided to use it as for building setup packages (nightly builds). Google shows me a lot of…
0
votes
2 answers

Missing Deployment Project Type in Visual Studio 2012

I am not a full time programmer, but have to do a little bit to build tools to support my job. I have finished writing my application which I now need to deploy. I do not want to use "ClickOnce" as I need to alter files in the 'local' folder at…
0
votes
1 answer

How to solve "Invalid Service Account" Issue while installing win service?

I am using Msbuild Extension Pack to install windows service remotely. Every time i try to deploy my application i get this wired error: Install Service failed with code: 'StatusInvalidServiceAccount' The account in remote server is set to log on…
nzdev
  • 324
  • 1
  • 9
  • 24
0
votes
2 answers

Replace the Installation Folder dialog in Visual Studio Setup Project with my own Installation Folder dialog?

As you know, when creating a Visual Studio Setup project (with a msi file as output). In the User Interface window, there is a dialog named "Installation Folder". I want to decorate this dialog (such as use an Office 2007-styled form instead)... I…