1
vote
0answers
12 views

Running Redmon with a Service

I am trying to use Redmon 1.7 on my windows XP SP2 desktop machine. I process the data provided by Redmon to MyProgram.exe and then write it out to stdout which Redmon sends to printer port. But ...
0
votes
0answers
149 views

Send 3 parameter from my program to Kerio VPN client (another application)

I use "process class" in my program to call Kerio Vpn Client(another application): System.Diagnostics.Process Kerio = new System.Diagnostics.Process(); Kerio.StartInfo.FileName = @"C:\\kvpncgui.exe"; ...
0
votes
0answers
160 views

Building mongoose web server under MinGW

I want to deploy mongoose as service on windows but from linux side. So, I want to build mongoose under mingw. In mongoose directory when I run "make mingw" Following error occurs . ...
1
vote
1answer
281 views

how to debug windows service start-up code in c,not c#

everyone I want to know how to debug the windows service start-up code in C.there are several questions like this but in C# but they are not what I need. So far,I can only attach to process to ...
2
votes
1answer
90 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 ...
2
votes
3answers
840 views

Windows service: Listening on socket while running as LocalSystem

I'm writing a small server-like program in C for Windows (using MinGW/GCC, testing on Windows 7) which is eventually supposed to run as a service with the LocalSystem account. I am creating a socket, ...
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
343 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 ...
0
votes
1answer
174 views

presponse parameter WTSSendMessage

I'm involved in writing a service and I'd like to diaply a message box on "service stop request".. I tried using "WTSSendmessage" API.. But that didnt display a message box. My another doubt is what ...
0
votes
2answers
362 views

WTSSendmessage before stopping a service

Am trying to display a message box once the user tries to stop a service. For this I used WTSSendmessage API... And I called the function once the SERVICE_CONTROL_STOP event occurs.. Am I right in ...
0
votes
1answer
336 views

Windows service message in system tray

I've posted a similar similar query Link to my previous post. Still I need some more clarifications on this topic, 1) Can I display a warning message using "WTSSendMessage", once the user tries to ...
0
votes
4answers
149 views

Warning window once the user tries to stop a service

I'm writing a service in "C" and I'd like to display a warning window once the user tries to stop the service ( With "OK" and "Cancel" Buttons ). Is there any specific windows API available to ...
0
votes
1answer
160 views

Run application in separate session?

Someone can point me reliable method to run given application in different session of same user on Windows ? I code in C. Thanks in advance.
0
votes
1answer
78 views

Debugging startup issues in a C Windows Service

I'm trying to debug an issue that happens on service startup. Trying to attach while things are running is failing, windbg times out with an error about a link lock. I think that the error occurs ...
0
votes
0answers
113 views

Windows NT Service storage path

I see that programs store permanent data (files, databases) in (for XP) Documents and Settings\<user>\Local Settings\Application Data\Company\Software and SHGetSpecialFolderPath() with ...
0
votes
1answer
807 views

How to correctly use SetServiceStatus to tell Windows my service is stopping?

Sorry about the length of the sample, but in order to get all the required components of a service it has to be this long. Using the help of others here I've managed to get a service that starts ...
0
votes
1answer
246 views

What is the correct type cast to avoid a compiler warning using SERVICE_TABLE_ENTRY from winsvc.h

When trying to set the SERVICE_TABLE_ENTRY using the example at Creating Windows service without Visual Studio and compiling using the mingw32 cross-compiler on Fedora 14 I get a compiler warning. ...
0
votes
1answer
209 views

Using OpenSCManager to load the Service Database of a non-running Windows installation

I am pulling (in the IT sense) hard drives from working machines and need to adjust their service configuration in the registry. In the Windows API OpenSCManager, which is used to edit services in the ...
3
votes
3answers
2k views

Any examples of creating a windows service in C/C++ ? (No GUI)

This is a great reference of how it all works at a relatively low level: http://msdn.microsoft.com/en-us/library/ms685967%28VS.85%29.aspx However, is there a working C/C++ example that shows how to ...
0
votes
3answers
917 views

Install/Uninstall C Windows Service

I have written a windows service in C. I would like to install/uninstall it without using .NET framework (installutil) or a visual studio installer (because I'm writing this in C). I am using NSIS to ...
0
votes
0answers
268 views

Failed to open Serial Port through Windows Service when starting service first time after installation

i am developing a window service which execute an application using creatprocess() API with default local system user prvilieges and this Application open Serialport and writes to it. Problem i am ...
2
votes
1answer
281 views

Registering for USB insertion/removal notifications (Windows Service)

I am writing Windows Service which logs information on inserted or removed USB devices. RegisterDeviceNotification function returns valid handle, but SERVICE_CONTROL_DEVICEEVENT notifications still ...
0
votes
2answers
287 views

Windows Service C

I have written a windows service in C but the lack of documentation on writing a service in this language means that I have a few things I need help with. I want to create a config file that the ...
3
votes
5answers
470 views

Windows EXE can run as service or application. How can I determine if it is running as a service or not?

I am looking for a Win32 API call to return the runtime context of my process. I want to be able to programmatically test if I am running as a service or am I running as standard application process. ...
1
vote
1answer
66 views

Windows service lifetime and duty

I need a management application running with no-gui, doing some periodic jobs and connectable anytime by another console or desktop application. On Linux, it would be a daemon. Is Windows service ...
2
votes
1answer
151 views

Passing data between driver and Windows service

What is the cleanest way to pass data from device driver to windows service and back?
0
votes
0answers
126 views

Program for working on systems services using c++, Say performance or bandwidth monitoring [closed]

I need to program basic system services of windows like network monitoring, performance monitoring etc in c or c++, i couldn't find any books for those system services in c or c++. Can anyone show me ...
0
votes
2answers
310 views

Tools/techniques for diagnosing C app crash on Windows

I have written an application in C, which runs as a Windows service. Most users can run the app without any problems, but a significant minority experience crashes caused by an Access Violation, so I ...
0
votes
0answers
619 views

How to hook windows service

I am successful in hooking windows Nt functions (registry and file systems and create process functions). However I am in the beginning stage of analysing about hooking services. I would like to ...
10
votes
2answers
656 views

Can you programmatically interact with Component-Based Servicing (TrustedInstaller)?

I have been trying to find out how to programmatically interact with Component-Based Servicing (CBS) which is basically the TrustedInstaller and other services. With the goal to be able to query CBS ...
0
votes
2answers
298 views

How to communicate between service controller and a service/daemon?

It is easy to display the status of a Windows service or to control it (start/stop) from a GUI application but the question if how about receiving/sending notifications from the service? Like: service ...
2
votes
6answers
335 views

Writing application for both Unix and Windows

I'll write a program for Interactive UNIX (http://en.wikipedia.org/wiki/INTERACTIVE%5FUNIX). But in a year it will be ported to Windows. I'll write it in ANSI C and/or SH-script. When it runs on ...
0
votes
1answer
558 views

Calling methods in a win32 service with elevated privileges from an application

I have developed a Win32 C/C++ application that creates dynamic WFP IP filters, however it must be run as admin to do so (due to the Windows security policy). I want to place the code that requires ...
3
votes
2answers
1k views

Check for environment variable in another process?

In Windows, is there a way to check for the existence of an environment variable for another process? Just need to check existence, not necessarily get value. I need to do this from code.
3
votes
2answers
1k views

How can I monitor status changes of windows services under windows xp?

I'm trying to write a program in C, that can detect when some Windows services (aka. NT services) are started or stopped. There seems to be a function NotifyServiceStatusChange, but that's only ...
0
votes
4answers
771 views

Debugging my windows DLL that might be invoked from a Windows Service

I have my SNMP Extension Agent DLL that is called by the Windows SNMP Service (snmp.exe) everytime i do an snmpwalk (another console application) .I want to step into my DLL code that is called from ...
6
votes
4answers
2k views

Creating Windows service without Visual Studio

So creating a Windows service using Visual Studio is fairly trivial. My question goes a bit deeper as to what actually makes an executable installable as a service & how to write a service as a ...