Tagged Questions
0
votes
2answers
56 views
Prevent services from losing settings on major upgrade in WiX
I'm trying to prevent my services from losing their settings (credentials and other options) on major upgrades in my WiX installer.
I followed the advice here, and I'm trying to use
...
0
votes
1answer
26 views
Issue with Windows service/Application uninstall
I have an application A running on a Windows 7 machine..which has an exe file A.exe. This application runs as a service. Now, when I uninstall the app with the Windows services window still open and ...
1
vote
2answers
42 views
uninstall msi package through system service failed: Source is invalid due to client source out of sync (product code is the same)
I use WiX 3.7 to write an installer, and I will install a c# system service will try to reinstall the software, using msiexec -x {product_code} -quiet. My OS is Win8
I first install the software ...
0
votes
2answers
47 views
Installing Multiple .Net services with Wix 3.7 only the first one runs
I am installing multiple .net windows services. All the services install all the dependencies in the appropriate folders. However, only the first one will run. The other services give Error 1053: ...
1
vote
1answer
45 views
How to only stop and not uninstall windows services when major upgrade in wix?
I'm working on an installer that is supposed to install Windows services in wix v3.8. The problem is that we need to make a major upgrade without uninstalling the service only to stop it.
We're using ...
0
votes
1answer
37 views
Wix Uninstall service issue
So basically what I'm trying to do is to have a number of additional parameters (namely SERVICENAME and SERVICEDISPLAYNAME) in the installer of my application (which runs a service) instead of ...
1
vote
0answers
59 views
Grant service start / stop permissions to existing service using WiX
My WiX installer installs ServiceA which runs as NetworkService. During its run time, ServiceA has an occassional need to restart an already installed ServiceB. However, ServiceB does not grant ...
0
votes
0answers
153 views
WiX service installer gets stuck on Windows XP
I have a WiX installer that installs (as a Domainadmin) a service I wrote and starts it after completion. It has to run on Windows XP as well as Windows 7. It worked fine on both operating systems.
...
0
votes
3answers
289 views
Install Service with custom credentials
I have a Service to install by my installer. On UI user can choose to install this service as LocalSystem or with specified user credentials.
My Wix code looks like this:
<Component ...
0
votes
1answer
2k views
Can't start windows service with WiX
I have the following WiX project to install my service:
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="GUID" ...
3
votes
4answers
2k views
Not enough permissions to install service
I have the following declaration of my service:
<ServiceControl Id="ServiceStartStop"
Name="[name]"
Start="install"
Stop="both"
...
1
vote
2answers
538 views
WiX - Restart service after modification of the installed product
I'm writing a MSI which installs a windows service and adds some DLLs which the service uses. Those DLLs are features which can be added or removed using the installer.
After a user modifies the ...
2
votes
1answer
494 views
Wix: Install Windows Service with user specified service name
I have an installer project to install a Windows Service. This installer contains a UI Dialog to allow user to specify the Service Name. This Service Name is stored to a public property. Installer ...
1
vote
2answers
150 views
How to use Custom Action for Condition?
I need to check if some service already installed in system before continue installation.
I.e. I have added
<Condition Message="Svc must be installed">
Installed OR SVC_V1
...
2
votes
1answer
197 views
Can Wix3 check if a service exists?
Does Wix 3 have a built in way to just check whether a service exists? The closest guess I can come up with is using ServiceConfig and trying to detect a failure.
0
votes
1answer
408 views
Wix: The service cannot be started during installation
I'm having a problem with Wix Service as the service cannot be started during install progress. It throws the error:
Error 1053: The service did not respond to the start or control request in a ...
3
votes
1answer
1k views
Wix: Can excute a custom action before InstallValidate?
During uninstall progress, the installer displays below message:
"The setup must update files or services that cannot be updated while the system is running. If you choose to continue, a reboot will ...
1
vote
2answers
534 views
Register windows service with parameters using WIX
I want to create a windows service using WIX and set some parameters (not arguments) to the service. I refer to the parameters which appears under the System->[X]ControlSet->[Service ...
1
vote
2answers
300 views
How to check if service is running before installation?
I'd like to check if some service is running on the local computer before installation of my product. How can I check it?
0
votes
2answers
577 views
Installer cannot start the service under User
Installer installs windows service.
I provide form to user to select one of accounts to start the service:
Local service
Local System
Network System
User account
When I select User and enter ...
5
votes
1answer
6k views
“Service failed to start - Verify that you have sufficient privileges to start system services”
When I tried to run the installer that I created in WIX, the error message below occured:
"Service 'Report Generator Service' (Report Generator Service) failed to start. Verify that you have ...
1
vote
1answer
360 views
Wix problem with ServiceConfigFailureActions : not executed during installation
I'm trying to modify an existing wxs file in order to configure a service. I want this service to be configure for restarting when it stops. This service is installed by my msi.
I use a ...
3
votes
2answers
2k views
How to change the window service startup type in Wix installer
We need to modify the Startup type of our windows service from "Automatic" to "Automatic Delayed Start". Anyone has the idea that how to do this?
My code is like this:
<ServiceInstall
...
4
votes
3answers
1k views
WiX: InstallService conditionally, but install file unconditionally
In Windows Install XML toolset, to install a service, we group <ServiceInstall> with a <File> in a <Component>. To conditionally install the service, we put <Condition> under ...
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 ...
0
votes
1answer
299 views
First run notepad with my.cfg and only then start the service
I install along with my application:
1) a service that starts and stops my application as needed
2) a conf file that contains actually the user data and that will be shown to the user to modify as ...
1
vote
1answer
746 views
Stopping the service and the babysited application before uninstalling
I have a service MyService.exe that is babysitting my application MyApp.exe, meaning it starts the application when this one crashes or whatever. Basically when the service is stopped the application ...
2
votes
2answers
193 views
Add network service
I have a kernel service driver , i want to install it with an installer .
I use Wix that already copy files in driver store but i still need to add the service to the nerwork manualy (in local area ...
0
votes
1answer
994 views
How to use WIX to deploy and run WCF service
I am trying to make an installer which deploys my wcf service, at the moment it is creating the virtual directory, but when I try connect my app to it, I get a
CommunicationException was unhandled
...
4
votes
3answers
7k views
How to install and start a Windows Service under NetworkService account by using WiX?
I am trying to create a wix installer to install and start a Windows Service under NetworkService account, but failed, what I got is "Service"() could not be installed. Verify that you have sufficient ...
3
votes
2answers
1k views
Building an installer that can install the same package multiple times (to different folders) with multiple configurations
We have a bit of an odd setup, which comes from the fact we provide hosted installations of our software to our clients, and each client may be on a different version of our software and be running ...
1
vote
1answer
927 views
Check if service is running in WiX
Recently I had a problem in a costumer's computer. Our installer would hang during install and uninstall. Eventually I found out that the winmgmt service wasn't running, and that was causing the ...
