Tagged Questions
0
votes
1answer
21 views
Start mulitple instances of a Windows service from Wix
I'm currently working on a msi, and am facing some problems with starting services from the wix project. This is the xml for copying the exe file, which is the service, and installing the service.
...
1
vote
1answer
42 views
Stopping and uninstalling a different service when user uninstalls
Is there anyway to check to see if a service is installed, and if so, stop it and uninstall it when my application is being uninstalled using WiX 3.7? I don't want WiX to install the service though - ...
1
vote
1answer
100 views
Failed to install and start windows services in wix installer
I am creating an MSI package for installing and starting windows services using WiX v3.8. The code as following:
<Component Id="INSTALLAPSSERVICE" Guid="991D5F82-0E77-4FE3-B1D8-4C941B84C7CD" ...
-1
votes
0answers
27 views
Some questions should be solved that maked by wix v3.8? [closed]
A msi or exe that producted by wix when makes a upgrade,I want to preserve a configuration file and stop a windows services but not to be removed. What shoud I do? Thanks!
0
votes
1answer
68 views
WIX Template project Cannot be found
Im working on Windows Service Project using VS2012, and when im trying to Add a Setup Project to complete my Solution
I found that I cannot add This Template to the Solution i Donno why!
I just ...
1
vote
1answer
129 views
Install a service created with .NET using WiX
I am trying to create a service using VS2012 express that will be installed with WiX. This is done without the templates provided in the full version of VS. I had my class derive from ServiceBase. ...
0
votes
1answer
551 views
Update app.config from WIX setup?
I am trying Wix 3.6 and this is how it looks right now :
<?xml version="1.0" encoding="UTF-8"?>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory ...
1
vote
1answer
210 views
Wix and Windows Service questions
I have a Windows Service project that contains a WCF(selfhost) service (couple of dll files and a app.config), this is to be insalled with Wix.
I have added a reference to my Wix setup package and ...
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
42 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 ...
2
votes
1answer
499 views
Windows Service installed by Wix
I'm using WiX 3.6 to create an installer for a windows service. I have the solution building and am able to install the service on my development machine and the service starts just like I wanted. The ...
0
votes
1answer
253 views
C# - WiX windows service
I have a WiX setup project that takes the output of a c# windows service.
I install the project and the service is created properly (in services.msc) and I can see the process in the task manager.
My ...
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
2answers
353 views
How to install windows service using wix and not using ServiceInstall
I need to install a windows service using wix. Unfortunately ServiceInstall doesn't fit my needs. It doesn't allow to specify service file explicitly and needs to be placed into the same component ...
1
vote
1answer
416 views
WIX 3.5 Multiple Instances Windows Service
I have a simple WIX installer which will install a Windows Service. I have Multiple Instances setup so that the service can run side by side.
Everything is looking good the only problem I'm now ...
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 ...
1
vote
2answers
115 views
What element in WIX XML sets the description field of the process shown in the Windows Task Manager?
I have a WIX that installs a C# windows service. Everything is good. It would be even better if I somehow is able to change the description field of the process when it's displayed in the Windows ...
3
votes
2answers
1k views
Windows service does not stop and not deleted on uninstall (Wix)
I've seen a few related questions on stackoverflow that relate to this one, but none of them seem to address the specific behavior I'm observing.
I have a Windows Service defined as follows in a Wix ...
0
votes
2answers
281 views
Wix Read and Write Network Service
I've been trying to get my .msi to install a service on my machine. I used exe4j to make my Java code, archived in .jar file, for it to be held in a .exe file. The service needs to have privileges to ...
0
votes
0answers
110 views
How to specify the location of a config file for a service installed with WiX
I'm trying to install a .Net Service through WiX. I've been able to install the service but I can't find a way to specify the location of the config file. When testing, I used sc to create the service ...
0
votes
1answer
371 views
Adding command-line argument to Windows Service when installing using WiX
I managed to create a WiX 3.x installer for Windows Service and added some standard UI.
While installing Windows Service using WiX I need to add a command-line argument to that Windows Service. That ...
4
votes
1answer
520 views
WiX: Old versions don't disappear in Add/Remove Programs list
I have a Windows Service that I install and upgrade with WiX, and this works great (it's very fast!). The only problem is that if I upgrade from, say, 1.0 to 1.1, both copies still have entries in the ...
2
votes
1answer
3k views
How to create simple Wix setup project
We have a client/server application which includes a Windows Service and a Winform client tool. I've managed to create a Wix project in Visual Studio (2010, using the wix 3.5 toolset). I'm using the ...
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 ...
3
votes
1answer
2k views
How to install redistributable package of .NET Framework with Wix?
I have a general task: install .NET Framework 3.5 during the setup of my product.
I do the following:
I have created a custom action X
Custom action X starts an executable Y via Process.Start()
...
0
votes
1answer
151 views
How can I prevent a pop-up asking to shut down services before uninstalling
I have a WiX installer that runs a program that downloads the latest version of my code and installs three windows services. I have a custom action runs another program that shuts down and uninstalls ...
7
votes
2answers
6k views
Windows Service won't automatically start after reboot [duplicate]
My automatically starting windows service fails to start only on reboot. I have a windows service created in C# and installed via a Wix created installer. The service is set up to start ...
0
votes
2answers
589 views
Windows Service without [RunInstaller]
I wrote a Windows Service using C#.NET. To install the service, I've added a "Project Installer" class that inherited from the Installer class and decorated with the [RunInstaller].
Without the ...
1
vote
1answer
285 views
Two almost identical WIX projects - one works fine, the other fails with security issue
I have WIX installers for two windows services. Both are installed using the same credentials, but one works while the other fails with the error "Service "PCP Event Processor-3.9.9.0-wix' ...
8
votes
5answers
4k views
Running msiexec from a service (Local System account)
We are working on an update system for our software. The updater should in the background as a service, and when an update is available, downloads and installs it. We need the service to install the ...
3
votes
1answer
1k views
Parameterise Service start option in WiX installer
I have a ServiceInstall component in a WiX installer where I have a requirement to either start auto or demand depending on parameters passed into the MSI.
So the Xml element in question is
...
5
votes
1answer
3k views
WiX - Install Windows Service and give permissions
We are required to give a user permissions to Start, Stop, and Query status of an installed service.
In WiX 2.0, this xml would have worked:
<ServiceInstall
Id="ServiceInstaller" ...
6
votes
2answers
7k views
How to install and start a Windows Service using WiX
I tried to use the codes below in Wix.
But when installing, the installer was freezing for like 3 minutes on status: Starting services, then I got this message "Service Jobservice failed to start. ...
1
vote
1answer
989 views
WiX uninstaller: restart service if present
Part of our app involves registering a plug-in to a third-party product. While the third-party service is running, it has our DLL loaded, so the files on disk are locked.
So when we uninstall our ...
1
vote
2answers
2k views
WIX ServiceInstall - setting the service to run under the NetworkService account
I am trying to create a WIX installer to install my windows service to run under the NetworkService account and getting an Insufficient Priviledges error during the installation.
I found this post ...
3
votes
3answers
863 views
Launching a service from msi installer that depends on assemblies installed by the msi
I'm using WiX to write a MSI installer to start a service that depends on DLLs installed by the MSI. On Vista, the DLLs become added to the global assembly cache in the MSI's InstallFinalize phase, so ...
0
votes
1answer
321 views
WCF in a windows service
I have a windows service that exposes a TCP connection (using WCF). This service starts and works fine on my machine (which uses windows firewall).
My colleagues are using mcafee security software ...
5
votes
1answer
896 views
Installing a multi-file NT Service using WiX (2.0)
How do I install a service with some additional files in WiX, and define what file is the actual service EXE file?
Scenario: I had a service which was just a single EXE file, and installed it as a ...
3
votes
3answers
2k views
WiX installer and custom actions
I have an application that is a not so simple Windows service (C#). I created an installer using Visual Studio 2008, which did the job of installing the service on the clients machine, but using the ...
1
vote
4answers
1k views
WIX installed program not uninstalling correctly
This is my situation.
I have two programs. Lets call them program A and Program B.
They both use WIX to create the MSI packages.
A is a WindowsService, B is a Windows WCF Service
When I install ...
3
votes
1answer
2k views
Wix: Stopping a Windows Service on uninstall
When I uninstall my service I get the error where it says I have to stop such and such service before uninstalling. This is unsatisfactory - the uninstaller should automatically stop it.
I found a ...
6
votes
2answers
3k views
How do I encrypt app.config file sections during install with WiX?
I have found an example for encrypting a web.config during installation here, but my app is a windows service. The aspnetreg_iis method works only for web.config files.
I know how to programatically ...