Tagged Questions
1
vote
2answers
24 views
Installing a Windows Service
I have created a Simple windows service to be used in my project. Is it better to install it using the InstallUtil.exe in CMD Promt (or) By creating *.Msi file. I have to install this Service in all ...
0
votes
0answers
24 views
Installshield not copying new primary output?
Question:
I'm using Visual Studio 2012 to create a Windows Service.
So far, I've written a windows service before with VisualStudio 2010 and managed to solve all the problems.
The service works ...
1
vote
0answers
46 views
Windows Installer (MSI 5.0) fails with ERROR 1939 during “MsiConfigureServices” action
When trying to install a setup package using the new MSI 5.0 features of Windows Service Configuration (using Tables: MsiServiceConfig / MsiServiceConfigFailureActions)
the service config fails and ...
1
vote
0answers
62 views
Installer for Java + Tomcat + PostgreSQL [closed]
I need to create a Windows-only installer that is able to do the following:
Prompt user to confirm EULA. If he refuses - do not proceed.
Install JDK (I am not sure JRE is good for Tomcat).
Install ...
0
votes
1answer
19 views
using ms installer to delete previously installed service and install the new version
I am learning about windows services and i successfully installed it using the msi installer now when i make changes to the onstart() method and build the project i also changed the version number in ...
0
votes
1answer
46 views
Windows service setup project doesn't copy referenced dlls
I've just built a windows service and it runs like a dream in debug/release on my dev machine. I've created a setup project following steps in walkthroughs such as this blog post, this msdn ...
0
votes
4answers
66 views
XML file couldn't be detected after windows service setup
I have created a windows service. I do the setup of the service using the windows installer.
I have one XML file like a config file. Whenever i debug windows service with attaching the debug project ...
0
votes
1answer
269 views
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 ...
0
votes
1answer
1k views
Install Windows service as easy as possible with Visual Studio 2012?
I have created a Windows service that I use a bat file to install like this :
@ECHO OFF
REM The following directory is for .NET 4.0
set DOTNETFX2=%SystemRoot%\Microsoft.NET\Framework\v4.0.30319
set ...
0
votes
0answers
59 views
How do I cause an attempt to uninstall my Windows service to fail if another service has a dependency on it?
I have a Windows service (written in .NET) for which I built an installer using WiX 3.7. It serves an infrastructure role, and anyone can write another Windows Service that uses it. Since my service ...
2
votes
1answer
41 views
Install a service from an existing file with WiX
I know how to Install an .exe file, Install the corresponding Windows Service and start it.
What I don't know is how to Install a service from an existing file on the user's computer. I don't want to ...
4
votes
1answer
352 views
Cannot update Windows service with .msi
Problem:
I have made a Windows Service i VS2010 (C#) and a corresponding .msi that installs and starts it. Version, ProductCode, UpgradeCode etc. is set properly. RemovePreviousVersions is set to ...
0
votes
1answer
78 views
Using WiX, Windows Services are not installed after a downgrade
While testing the downgrade functionality of one of our WiX-built MSIs, I have noticed something odd.
I have allowed downgrades in the MajorUpgrade element and I have scheduled that element to be ...
0
votes
0answers
490 views
WCF Client as Windows Service - TCP error code 10061: No connection could be made because the target machine actively refused it 127.0.0.1
I have WCF Client running on Windows XP machine as Service. Its using WsHttpBinding.
It works fine if I invoke Windows Service using Administrator account but when using Local System or Network ...
2
votes
1answer
86 views
create custom installer
I have created an application which is an window service which has to run under context of domain administrator account and take some server settings etc stuff.
Now I need to install it on client ...
0
votes
1answer
194 views
. msi file fails with “Product :XXX Configuration failed” when called
Scenario 1:
I run this code from a Windows Service and it fails with the windows event log:
"Product: XXX -- Configuration failed"
Scenario 2:
I run this as a plain exe and it works.
Code I ...
0
votes
2answers
230 views
How to add data to registry before installing service using windows installer
I written windows service in c# which reads some data from registry.Then I created windows installer using visual Studio 2010 for that service and also adding data to registry required for service. My ...
1
vote
1answer
289 views
c# window service not picking up log4net settings after installing from custom installer
I have a client application which is an window server with its dlls, exe and config file.
I have created a custom installer for it which will copy this in program files and update its config.
This ...
1
vote
1answer
734 views
Visual Studio 2010 MSI project and Service Installer Class using Custom Actions
Other than this, my installer class is nothing special. It installs the windows service. But now I am needing to prompt the user for some info and pass the info to the installer class so that the ...
0
votes
2answers
752 views
install windows service in custom actions
I have created a c# 4.0 windows service. I have created an installer project (.msi) for it which installs the service to a particular folder.
To automate the process fully, I would like to install ...
0
votes
1answer
497 views
Installshield winforms service creation with specific logon user account
With this c# code i can get the user of my windows service
System.Management.SelectQuery sQuery = new System.Management.SelectQuery(string.Format("select Name,startname from Win32_Service ...
0
votes
1answer
106 views
Using Orca To Change Service
I have a Windows Service I created that I want to install multiple times on the same server without having to create multiple duplicate VS projects. Is there a way to use Orca to edit the MSI file to ...
1
vote
0answers
355 views
Visual Studio Setup Project: Install Service Executable Marked as Hidden, System
I'm using a Visual Studio 2010 'Setup Project' to install my C# Windows Service application.
I want to mark the installed service executable as hidden and system in the file properties, like so:
...
0
votes
0answers
219 views
Automation. Impersonate Windows Installer from Windows Service
I'm currently working on windows app which needs to deploy some modules under the current user's account. This application is composed of a client application (USER account) and a windows service ...
0
votes
1answer
182 views
windows service msi installer created in vs2003 hangs in win7 while installing
We have few windows services developed using .Net framework 1.1(VS2003).For each windows service an msi installer(set up project) is created to make installation easier.These installers are able to ...
0
votes
2answers
215 views
.NET 4.0 upgrade error on MSI install - XML does not contain expected attribute error
We have an MSI to install windows service on client machine.
Windows service calls the web service of our server to perform operations.
Initially both the MSI and web service were built using .NET ...
2
votes
3answers
111 views
What installer options do I have for bundling a windows service along with a WPF application?
I've already looked at C#: Making an Installer that installs both a WPF application (ClickOnce) and a Windows Service but that never answered my question. I have a similar set up: a WPF application ...
0
votes
2answers
194 views
Error when writing filepath to app.config during windows service installation vb.net
I'm trying to write a user defined filepath to my app.config file.
When i enter c:\ as the filepath it writes it to my xml file but adds and extra /
Im not too sure why its happening? i have all the ...
0
votes
2answers
242 views
Allow user to input value during on start of a windows service vb.net
I need to get the user input for where they want the files that will be produced by my windows service to be stored.
I was thinking that i could do this by reading in the user's input to a variable ...
0
votes
1answer
247 views
How to allow a user to input a value during the msi installation of a windows service vb.net
I currently have a windows service that is packaged up as an msi installer. However, during the installation i need the user to input their required filepath (to string) location. The filepath ...
0
votes
1answer
1k views
Configure App.config Application Settings During MSI Install vb.net
I am trying to create an msi install for my windows service. The reason for creating an msi is that the intended users want to be able to quickly install the service with as-little intervention as ...
8
votes
3answers
6k views
How to create an installer for a .net Windows Service using Visual Studio
How do I create an installed for a Windows Service that I have created using Visual Studio?
1
vote
1answer
295 views
Wix installer to replace INSTSRV and SRVANY for user defined service installation
I created an executable MyService.exe using Visual Studio C# Express. There are no options in the Express version to create a service. In the past, this has been manually installed as a user defined ...
0
votes
2answers
833 views
Windows service pass parameters
I'm using this method: How to make a .NET Windows Service start right after the installation?
The post starts with "posted a step-by-step procedure". How can I pass parameters to the OnStart function ...
3
votes
1answer
188 views
Using data retrieved from custom action in installation location
I have created a custom action for installing my service to windows. I have a custom dialog in the setup that retrieves a name for the instance of the service.
When installing I want to install the ...
0
votes
1answer
148 views
Failing to install the latest version of Windows Service
I am installing a Windows Service on my Desktop with a particular version. Then I revise my service and make some changes in the service.I upgrade my installer version.I make the property ...
0
votes
0answers
168 views
Installing Higher Versions of existing Windows Service in VS 2008
I am installing a Windows Service on my Desktop with a particular version.
Then I revise my service and make some changes in the service.I upgrade my installer version.I also make the property ...
4
votes
2answers
434 views
Determining whether a service is already installed
As part of installing my windows service I have coded an alternative to installutil and the command line:
IDictionary state = new Hashtable();
using (AssemblyInstaller inst = new ...
1
vote
1answer
56 views
Upgrading Windows Service Automatically
I have an MSI which installs a windows service. I want the service to receive a message and be able to update itself. I have tried spinning off a new process which runs another assembly which in turns ...
0
votes
0answers
603 views
Msi insaller passing paramenter from command prompt for Set Service Login
Installer builder tool: Microsoft Visual Studio 2010 , Project Installer
I am trying to pass username and password for the installer to use for running Windows services that will install by the ...
1
vote
3answers
2k views
MSI Uninstall issue: Error 1001 -> The saved State dictionary contains inconsistent data and might have been corrupted
I need to create a few Windows Services and obviously I would like to package them in a nice installer.
Since I was unfamiliar with Service creation/installation I basically used code from the ...
0
votes
1answer
172 views
Upgrading a Windows service unattended
I have a Windows service app in C# and a setup project for installing the service. In the setup project, RemovePreviousVersion is set to true, and the custom actions are all set.
I upgrade the app ...
0
votes
0answers
620 views
Install multiple instance of windows service application (c#) using setup project
I have created a windows service application in c#. I want to create msi installer to install multiple instance of the same service application on the single project. For that I have added one dialog ...
0
votes
2answers
600 views
How to remove service application from Add/Remove Programs if it is no longer listed as a service?
I had a windows installer install a service I created. I tested on my dev machine rather than a test machine. The application files no longer exist and the service does not show up in the list of ...
1
vote
1answer
583 views
Why can I manually build a Python MSI installer, but my Bamboo remote agent service fails to?
Background
My Bamboo server is running on Linux. I use Bamboo to build executable installers and source distributions for a Python app.
I can't build MSI installers for my Python package from Linux, ...
1
vote
1answer
495 views
In the ORCA tool how to bring the “custom action of set up proj” before the “InstallValidate” action?
I am upgrading the version of my app from 1.1.1 to 1.1.2 (say).
I have created a set up project for the application using VS2005 & have added a custom action which would programatically end a ...
1
vote
3answers
726 views
VS Setup Project - Installing Assemblies to GAC and starting a service that uses them all in one installation
I've read every stackoverflow article on MSI installations, but I cannot find the solution to my problem:
I have a VS2010 solution with 5 projects, all targeting .NET 2.0:
DLL A, no project ...
0
votes
1answer
3k views
Windows Installer Error Uninstalling a Service (could not open key UNKNOWN)
While uninstalling a VS2010 setup project I'm developing which installs a service, I am receiving the following error (taken from the verbose MSI logging):
MSI (c) (60:90) [13:37:59:038]: Font ...
2
votes
1answer
510 views
InstallShield Basic MSI Project installer loses “Log On As” after installing upgrade
I am writing an InstallShield Basic MSI Project installer to upgrade a Windows Service.
When I upgrade the service I do the following:
Note that the service "Log On As" user is a Windows domain ...
2
votes
1answer
1k views
MSI serviceInstall fails with service failed to start on some machines, but not others
So I have an MSI that deploys a service.
<ServiceInstall Id='ServiceInstall' ErrorControl='ignore' Type='ownProcess' DisplayName='MetricsReportingService' Description='It does metrics ...