Tagged Questions
0
votes
2answers
81 views
can't start the windows service after installing it by javaservice.exe
i am trying to run a .jar file as windows service using the JavaService.exe.
first probleme i had, is that i can't install services without running cmd console as administrator,
the first problem is ...
0
votes
1answer
32 views
Chatbot (irc) as WCF service?
I want to make a IRC bot and got most of the code already, the only thing I don t know yet is or it is possible that I can host it in a WCF service. The problem I think is that it will be garbage ...
-1
votes
3answers
162 views
Windows service OnStop issue
I have a Windows service which I put together from a number of blogs and forums, mainly questions I've asked and had answered here. The service works fine. The only problem is when I stop the service; ...
1
vote
2answers
70 views
What is the proper way for a Windows service to fail during its startup
I need my service to check for existence and structure of certain files during its startup and exit/fail/stop if some conditions haven't met.
I read this thread: What is the proper way for a Windows ...
0
votes
1answer
75 views
Strange behaviour of app when running as windows service
I'v created C# project with processing core ported from C++ - core simply does the job - gets simple data, processes it and returns some result as again simple data.
This projects works OK when ...
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 ...
1
vote
1answer
139 views
Not able to run batch file from Windows Service Application
I am having batch file : sample.bat with following code:
@ECHO OFF
SET /a INT1=%1
SET /a INT2=%2
SET /a ANSWER=INT1*INT2
ECHO %ANSWER%
PAUSE
Also created another batch file : cmdSample.bat with ...
0
votes
2answers
72 views
How to get all printer name in windows service?
I want to get all printer name installed on computer and network.
I used these function in below to get list of all printer. All these func. is working correctly in console and form application and i ...
0
votes
1answer
123 views
How to change Windows console app C# project into Windows Service using Visual Studio 2010?
I used this tutorial to create C# Windows service using Visual Studio 2010 and its stock console app project, but after I changed everything and tried to install it as such:
...
0
votes
2answers
49 views
Prevent windows service from stopping during debug
I'm developing an extension for the product which in fact is windows service. I'm attaching to the service from Visual Studio but after couple minutes of debugging the service stops working so I need ...
0
votes
2answers
84 views
Terminate thread execution for 24 hours
I have my service working mostly as it should, but it should only do it's work once every day.
To arrange this, my boss recommended I sleep the worker thread until 7am tomorrow:
This Thread.Sleep ...
-3
votes
2answers
87 views
C# Implementaion of New-Service cmdlet
I need to install an executable as service, and I need to do that from withing a PowerShell cdmlet written in C#. In essence I need to create the required registry entries etc. which will define the ...
0
votes
1answer
245 views
Cannot stop the service using ServiceController in .NET 3.5
I'm working in .NET 3.5 and I have the problem with stopping some service using ServiceController. I searched whole internet and I found no solution to my problem ;)
Here's how I do that:
using ...
0
votes
2answers
481 views
ServiceBase service error 193:0xc1 on Windows XP
I have a service that I've built using the C# ServiceBase class. It works when I run it in Windows 7 and Windows Server 2008; however, it doesn't work on Windows XP.
I created the service using sc ...
0
votes
0answers
128 views
Microsoft Reporting Service - Report definition gets invalid after hundreds of calls
I've created a Windows service that can create different pdf reports in a batch (a couple of thousand). For developing/debugging purposses I first created a console application that calls the logic. ...
2
votes
0answers
79 views
How to run multiple service instances in different AppDomains?
I have implemented a windows service.
How should I run multiple instances of the service, each in its own AppDomain ?
0
votes
0answers
50 views
Start a newly installed service only after machine restart
I have a python application which runs as a cx_freeze windows service. When installing the service (setting start type to automatic) causes the application to start running.
What I would really like ...
0
votes
1answer
44 views
How to detect WindowsService properties changes?
How to detect change of the ServiceStartMode property in WindowsService?
At start is Automatic, but later someone change it to Manual - how to catch this event?
0
votes
1answer
245 views
How can c# service identify current user logon name on terminal server?
How can c# service get the identity (logon name) of a terminal server user that calls it?
I wrote a c# service that listens for http request and return the current logon user. The request is ...
-1
votes
2answers
603 views
EventLog write permissions
My question is related to write permissions to the Windows Event Log.
I have looked around several posts concering this, and have found some ways to solve my problem, but none of these are acceptable ...
0
votes
0answers
76 views
IPC between a windows service and a webservice
What is the best/easiest way to setup interprocess communication between
a windows service and a webservice? The windows service will be running on
the same machine that is hosting the web service.
...
0
votes
1answer
95 views
How to add a service SID to a service?
I have a windows service with a TCP/IP server built in. Clients and connect and some information is distributed etc. Typically the service is installed to log on as Network Service.
There is some ...
0
votes
0answers
137 views
Using ServiceController or other to programmatically create an unmanaged kernel driver service
I have a C/C# mixed project composed by a kernel driver written in C and an application written in C#.
Right now, to create the kernel driver service and run it, i'm using the native APIs ...
4
votes
1answer
81 views
Python, Windows service Import error
I am trying to run a python application as a Windows Service. The code I have installs and starts but I am having issues importing modules and classes which are part of the application.
Note:: Python ...
1
vote
0answers
181 views
Debugging VS2012 Service on Windows 2003
I'm trying to attach a debugger to a windows service running on a Windows 2003R2 box using VS2012. I've installed the VS2012 SP1 debugging tools and set to 'No Authentication', but I just get a ...
1
vote
0answers
39 views
FLOSS solution for code-signing server (Windows)
Does anyone know of FLOSS solutions that allow me to send packages of files to a remote code-signing server for signing? Currently the method is to log into the remote machine using SSH or RDP. Having ...
0
votes
2answers
242 views
Windows service doesn't hit OnStart unless using Administrator account
The service installs correctly but when attempting to start it via net start or from the services window it doesn't start at all, not even getting to the OnStart handler.
If I use an administrator ...
0
votes
1answer
136 views
How Does ServiceProcess.ServiceController Do Its Work?
The Setup:
We have 2 Servers. They are on different subnets, but can still communicate with each other.
The Issue:
Server 1 used to query Server 2's Services with a ServiceController.Status call ...
0
votes
1answer
110 views
How can i Initialize StructureMap within windows service
I would like to ask how can i initialize StructureMap within windows service?
the error i am getting is:
The service type provided could not be loaded as a service because it does not have a default ...
0
votes
1answer
84 views
Can a service use Windows Raw Input API?
Windows Raw Input API requires a window to listen WM_INPUT messages. But, service has no window handle like a console application.
How can we use Windows Raw Input API on a service? Is it possible?
0
votes
0answers
140 views
system.unauthorizedaccessexception while starting a windows service
i've developed some windows services in vb .net 3.5,
placed in d:\services\servicX.exe , i've checked rights on directory and should be all avaibles...
yesterday all was fine, today i can't start ...
0
votes
2answers
183 views
How to start a windows service from other machines?
I have some windows services writtin with C# language that is running on my machine. I also created a WPF Application to my customer start and stop theses services. When I run it on the same machine, ...
0
votes
0answers
99 views
Use Entity Framework inside a ServiceBase class
I'm moving a routine that uses an Entity Framework edmx model to read data from a db and send to a web service.
When the service tries to create the model, reading the connection string from the ...
0
votes
3answers
120 views
How do I create a property that all sessions in a WCF service have access to?
i have nettcpbinding service and host it with windows service. the service must work on network and it handle incoming message comes from more than 100 clients.
Problem :
I want have a property that ...
1
vote
2answers
1k views
Windows Service is giving Description: <Failed to read description error code 2>
I have tired to uninstall a disabled windows servcie through registery
It is removed from registery but it is still showing in Services.msc
with Description: Failed to read description error code 2
...
4
votes
3answers
212 views
Should I call base class' methods in Windows services?
When deriving from ServiceBase, should I call the methods of the base class, too?
protected override void OnStart(string[] args)
{
//
// The stuff I do when the service starts.
//
...
1
vote
1answer
103 views
Install a service created with VS2010
I've to create a service in Visual Studio for one customer.
The customer IT service indicate me that they don't want any installer, only one exe that can be installed with instsrv.exe.
So I created ...
1
vote
1answer
152 views
How get system start up event in windows service c#?
I am writing a windows service. I want to do some functions on system start up, system lock, shutdown. How to get the start up,lock and shutdown events in the windows service ?
2
votes
1answer
82 views
Windows service Not able to access shared location
I have a windows service running with a local account let say "servername\User1".
when i log in with this user on server I am able to open a shared location let say "\SharedServer\Dir1".
but when ...
5
votes
2answers
888 views
Automatic deployment of Windows Service - tools [closed]
I am looking for recommendations on tools for automatic deployment of Windows Service to several machines. The tool should be able to:
- Stop/Start service
- Copy files
- Modify configuration files ...
0
votes
1answer
430 views
InternetGetConnectedState and “it should not be used from a service” statement from MSDN
I'm programming a Windows local service using C++ and WinAPIs. From within that service I need to know that an Internet connection is available (in general) so I came up with the ...
4
votes
1answer
431 views
Setting a Service's run credentials
I have a service with an app.config file that is consumed during install. In the ProjectInstaller class there is code to read the app.config file, pull out credentials and set them. The goal is to ...
0
votes
2answers
235 views
System.BadImageFormatException when installing a service
I have created an exe using exe4j (chose to create a service )
I am running installutil from v2.0 .net framework library using
installutil c:\...\myExe
and I get
the module was expected to ...
0
votes
4answers
168 views
How to orginize windows service on C# which is interacts with applications?
I need to organize windows service which should interacts with applications next way:
Application generate message, then somehow send this message to running service (there is actually the question. ...
0
votes
4answers
199 views
Why doesn't my service start after installation?
I've created a windows service, which is set to start automatically. I also added following code to installer:
public ProjectInstaller()
{
InitializeComponent();
...
2
votes
1answer
320 views
Create windows service with current user account using sc.exe
I am trying to write a batch file that creates a windows service which runs as the user who is currently running the batch file. In other word, if I, user_x runs the batch file, the created service ...
1
vote
1answer
39 views
Make Updates to an Old Windows Service?
I am looking to update an old Windows Service which has been running for a couple years now with no interruption. I have updated a couple connection strings within the project, and everything seems to ...
0
votes
1answer
76 views
USB device registration - logging only at stop request
please find the code for the service created to detect my USB device.
The problem in the above code is that the logfile is getting updated only after the service is stopped.
My intension is to ...
-1
votes
1answer
89 views
servicemain function starts only at the stop of service event
I used the below link http://www.muukka.net/programming/service/Beeper%20Service.cpp to write a service. but the problem here is, the servicemain function gets called only when service stop is ...
1
vote
1answer
339 views
Unknown type name - 'DEV_BROADCAST_DEVICEINTERFACE' in MINGW
I took this code
as example to write a service. And I made some changes in my main function in such a way to work with command line parameters and removed
#define UNICODE
#define WINVER 0x502
Am ...

