Tagged Questions
The installutil tag has no wiki summary.
63
votes
5answers
45k views
Install a .NET windows service without InstallUtil.exe
I have a standard .NET windows service written in C#.
Can it install itself without using InstallUtil?
Should I use the service installer class? How should I use it?
I want to be able to call the ...
12
votes
4answers
7k views
Installing a .NET service using InstallUtil
I'm trying to install a .NET service I wrote. As recommended by MSDN, I'm using InstallUtil. But I have missed how I can set the default service user on the command-line or even in the service ...
9
votes
3answers
5k views
Installing multiple instances of the same windows service on a server
So we've produced a windows service to feed data to our client application and everything is going great. The client has come up with a fun configuration request that requires two instances of this ...
6
votes
3answers
2k views
installing windows service with SC.exe or InstallUtil.exe - there is difference but which?
hejdig.
SC.exe and InstallUtil both install/uninstall windows services. But they don't seem to work the same way.
What is the difference?
For instance InstallUtil fails (some file or dependency ...
6
votes
3answers
3k views
Cannot install windows service
I have created a very simple window service using visual studio 2010 and .Net 4.0.
This service has no functionality added from the default windows service project, other than an installer has been ...
3
votes
2answers
267 views
Install Windows Service created in Visual Studio
When I create a new Windows Service in Visual Studio 2010, I get the message stating to use InstallUtil and net start to run the service.
I have tried the following steps:
Create new project File ...
3
votes
1answer
1k views
Using InstallUtil to install a Windows service with startup parameters
I am using InstallUtil to install my service and I just cannot figure out how to specify the startup parameters for it!
Here is my Installer subclass:
[RunInstaller(true)]
public class ...
3
votes
1answer
1k views
Can the Invoke-Item cmdlet launch an executable with parameters?
I'm trying to install some custom Windows services using PowerShell, and I've been unable to run InstallUtil without getting the following error:
A positional parameter cannot be found that ...
3
votes
5answers
2k views
C# Powershell snapin not registering using installutil
I've got a really simple powershell script (see below).
I've got installutil aliased using the following in my profile:
set-alias installutil ...
2
votes
2answers
738 views
WCF Service as Windows Service woes (Windows 7)
I followed the steps here to make my existing WCF service (already working fine as console application) be Windows Service as well, on my Windows 7 machine which is also my development machine.
No ...
2
votes
2answers
2k views
.net InstallUtil utility - 32 bit vs 64 bit
I've got a windows service compiled as AnyCPU. I'm trying to get it into our installer to distribute. However... I am unclear on the difference between the 32 bit and 64 bit versions of ...
2
votes
2answers
5k views
Correct InstallUtil Path To File Syntax?
I'm trying to install a Windows Service using a batch file, let's call it "installservice.bat". Inside the file I have the following commands:
...
2
votes
4answers
3k views
Controlling start up sequence of a windows service
I have a windows service installed using installutil and set to "Autostart". My problem is that when some servers are rebooted it attempts to start before "Microsoft SQL service" has started- I can ...
2
votes
3answers
981 views
What is the best way to install a C# windows service that doesn't require running installutil manually?
I'd like to package a C# windows service project so it can be easily installed by anyone without having to use installutil command prompt utility? Is there an easy way to configure a Visual Studio ...
1
vote
1answer
19 views
Can I stop parameters passed to InstallUtil from showing up in the install log?
I have created a custom task that is used to create SQL compact databases as part of setup. When use InstallUtil to execute this task I use a parameter for the (environment specific) password to use ...
1
vote
1answer
82 views
Pass parameters to InstallUtil from Powershell
I am trying to install a windows service from Power-shell as follows.
$sn = """" + $serviceName + " " + $exeName + """"
C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallUtil.exe -i ...
1
vote
2answers
105 views
No installers found when running install util on custom pssnapin
I created a very simple PSSnapin but when I go to run IntallUtil against the assembly I get the following:
No public installers with the RunInstallerAttribute.Yes attribute could be found in the ...
1
vote
1answer
121 views
Installing windows service fails: service already exists
I'm trying to reinstall a service I've written using C#.
The first time this worked. I used installutil to handle the install and the service showed up in the list of services and I could start it.
...
1
vote
1answer
262 views
Problem installing windows service
I am having a problem installing a Windows service. I installed and uninstalled the service numerous times (installutil..... installutil /u) without any problem but something went wrong and now when I ...
1
vote
1answer
241 views
Installing Windows Service fails
I'm trying to install a .NET 4 Windows Service on a production server: Running InstallUtil.exe gives me this error message:
Exception occurred while initializing the installation:
...
1
vote
2answers
375 views
How install managed service from WiX?
Is it possible/recommended to use the InstallService element to install a Windows service written in managed code (C#)? (I tried it and it does install the service, but the service won't start)
Or ...
1
vote
0answers
72 views
installutil bindingRedirect
I have a windows service that depends on a 3:rd party API
The API is already installed in the GAC on the client computer
There are several versions of the API (1.0.0.0, 1.1.0.0 etc)
My service ...
1
vote
1answer
2k views
How to automatically allow my service to interact with the desktop at installation time?
I have a Windows service built which is being installed by .NET 2.0's installutil /i command. It installs the service as with the following account, with a password:
NT AUTHORITY\LocalService
When ...
1
vote
3answers
408 views
Installing and running a .NET Windows service at a web host
I already asked this question at the JOS-.NET board but Joel is closing that board down so here it is again:
Do web hosting providers allow you to install Windows Services? I want to play around with ...
0
votes
1answer
81 views
WIX InstallUtil/InstallUtilLib and Configuration File Deployment why is InstallUtil bad?
I often find the quote "InstallUtil.exe" is an ugly pattern or "Don't use InstallUtil.exe" and that I should use native WIX or Installation package patterns and I still don't understood why.
I ...
0
votes
1answer
80 views
Installutil keeps telling me “No public installers found”. Any ideas?
I am trying to install a Windows service just created in Visual Studio 2008. The Install.log file tells me the following again and again:
No public installers with the RunInstallerAttribute.Yes ...
0
votes
0answers
106 views
installutil error for nt service - unable to create instance of installer
I'm trying to install a NT service using the the installutil facility but keep getting this error on several machines. This is a service which I had previously successfully installed and debugged ...
0
votes
0answers
23 views
Accessing Installation Context while installing Windows Service
I'm writing a Window Service, and I want the installer to look in the config file of the .exe that I'm passing to InstallUtil to get the configuration parameters for the installation.
So, in the ...
0
votes
1answer
196 views
C# InstallUtil/ManagedInstallerClass: Why are key value pairs not pass into the installers context parameters collection?
I pass the service name into the argument list, but when I look in the installers context it is not there:
args = new[] { Assembly.GetExecutingAssembly().Location, "/ServiceName=WinService1" };
...
0
votes
0answers
227 views
InstallUtil Weird Error - Not Showing in Services List
OK, for some strange reason, I created a service (32 bit), it has an installer setup in Visual Studio. I run:
installutil /i c:\path\service.exe
It's pointing to the 32 bit version of installutil. ...
0
votes
1answer
370 views
Installing a windows service as a user fails
I'm developing a windows service using .Net framework version 3.5. It needs to call a web service on a remote machine and I'm running into a weird installation problem.
I used to install it on my ...
0
votes
2answers
167 views
c# error on windows service
I have the following error:
OpenSCManager Failed 5: Access is denied.
Can someone help me? Is there another way besides using installutil to install the windows service ?
P.S : I am using ...
0
votes
0answers
283 views
How to specify 64 bit version of InstallUtil to use when installing assemblies through a Set up Project in Visual Studio 2010
I have a Windows service for installation of which I am providing both a 32 bit and a 64 bit installer. I am using Visual Studio 2010 to create these installers (MSI files). In my installation ...
0
votes
1answer
187 views
How to place PowerShell help file in GAC
I'm developing a powershell snapin derived from PSSnapIn.
If I manually copy my snapin.dll-help.xml file to the GAC get-help on my command works like expected.
So, is it possible to get InstallUtil ...
0
votes
1answer
383 views
Installing a .net 2008 windows service
I just created a simple test Windows Service and am having trouble. I'm new to Windows Services so I don't know if I'm even doing this right.
namespace testWindowsService
{
public partial class ...
0
votes
1answer
276 views
Setting a window service to run as the current user when it is installed using InstallUtil.exe
Is there a way to install a windows service and automatically set it up to run as the current user without having to manually fill in details each time it installs?
We're developing a windows ...
0
votes
1answer
326 views
InstallUtill of GCC compiled exe recieving System.BadImageFormatException
I am trying to use a GCC compiled exe as a service in windows. From what I have researched I should do: C:\Windows\Microsoft.net\Framework\v2.0.50727\InstallUtil.exe [program name]
Although when I ...
0
votes
4answers
708 views
Install/Uninstall a Windows Service in a build script with NAnt
Does NAnt have the ability to install or uninstall a windows service, using the InstallUtil utility or whatever else?
0
votes
3answers
116 views
Is there an official GUI way of installing and removing .Net services on Windows Server 2008?
Please read the whole question; I personally think that this is programming-related; if you think otherwise, then please migrate without down-voting.
I have found two different ways of installing a ...