2
votes
2answers
84 views

Create file that can be opened only by a Windows Service

Is it possible to select such a security descriptor using a DACL string such that the file can only be opened by a Windows Service, but not by an ordinary process, even if the process is run by the ...
1
vote
1answer
97 views

Is it possible to write a Windows service entirely in node.js?

I'm experimenting with using node.js beyond the server as a general-purpose scripting and application programming language. One project on my TODO list would be a Windows service so I'm considering ...
3
votes
2answers
215 views

How to get paths to user desktops from a service?

I need to enumerate paths to desktop folders for all users on a local Windows system from a service application. The catch is that some users may not be logged in at the time. So is there any API, or ...
0
votes
1answer
206 views

Run Windows forms app from Windows service

We have a third party legacy software which we need to run from a service, we want to automate it using window messages to click on buttons, suppress Message boxes etc. The problem is I cant seem to ...
0
votes
2answers
515 views

CreateProcessWithLogon in service returning code 5: access denied

I have a windows service with StartType = stSystem. It executes an application with the CreateProcessWithLogonW. usr := 'myuser'; dmn := 'mydomain'; pwd := 'thepassword'; cmd := 'c:\myapp.exe ...
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
4answers
366 views

CreateProcessWithLogonW : unable to start process

Hi I am completely new to programming. And please someone help me. I am trying to start a pocess from a service. I need to start the new process by prompting user to enter admin credentials. I was ...
0
votes
0answers
46 views

EnumUrls return fetched = 0 when process called by a service

I am trying to fetch Internet Explorer history using IUrlHistoryStg2 and Enumerating URL via EnumUrls. My process is working fine and fetching IE history when launched by the windows explorer but i ...
0
votes
1answer
195 views

. msi file fails with “Product :XXX Configuration failed” when called

Scenario 1: I run this code from a Windows Service and it fails with the windows event log: "Product: XXX -- Configuration failed" Scenario 2: I run this as a plain exe and it works. Code I ...
1
vote
1answer
279 views

Running a dll using rundll32.exe as a windows service

I was able to run a dll using rundll32.exe . Now I want to run it as a windows service but it doesn't seem to start and gets timeout. I am not sure how I could pass the parameters. Trying something ...
0
votes
1answer
83 views

Service always in STOPPED state

I have a problem with a service, when I try to install it like this : sc create MemoryStatus binpath= "C:\Users\rock\Documents\Visual Studio 2010\Projects\ServiceInC\Release\ServiceInC.exe" I get a ...
0
votes
2answers
663 views

How to run a service as LocalSystem in Windows 7?

I am trying to write my first service application following instructions in Windows SDK. I installed the service using the following code: SC_HANDLE schs=CreateService(sch, ...
0
votes
0answers
122 views

How to keep a Win64 C++ console app running like a service as it controls other executables?

I have a series of Win64 console apps, one is the "master" and 16 others are the "slaves". The original version of this logic only had one executable, which when launched with a command line ...
1
vote
4answers
145 views

Ways to communicate between JScript and Windows service

I have a Windows local service that may spawn off a process to execute a JScript script (in a .js file) via the Windows Script Host. The issue is that I need to notify my service of the results ...
0
votes
1answer
287 views

How do i get the name of a service from the proccess id?

I got the process id of the running service using the code below as well as the process name, but i all i really want is the service name/key.Is there a way to get that from either the process id or ...
0
votes
2answers
250 views

How do I get the Service Display name in C++?

I am trying to get the display name of the running service using c++. I was trying to use the GetServiceDisplayName function but it does not seem to be working, not sure why. TTServiceBegin( const ...
0
votes
1answer
433 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 ...
2
votes
3answers
846 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
236 views

disable specific usb disk in windows service

Does anyone know how can I prevent a specific USB disk/flash from installing in a Windows Service? I don't want to disable all usb ports, I just prevent a specific usb disk from installing. I'm using ...
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
364 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
337 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
150 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 ...
38
votes
2answers
1k views

How can a Windows service application be written in Haskell?

I've been struggling to write a Windows service application in Haskell. Background A service application is executed by the Windows Service Control Manager. Upon launching it makes a blocking call ...
2
votes
0answers
279 views

CreateProcessAsUser fails in Windows 7 after 7 invocations

My service spawns a process for each core on the target machine using CreateProcessAsUser. The process is a MFC program which has been modified to run using commandline parameters rather than GUI ...
1
vote
1answer
248 views

Change running process session ID and lpDesktop?

After building a service that an launch interactive processes in a user's session via CreateProcessAsUser and lpDesktop specified in STARTUPINFO -- is it possible to change the session that a process ...
0
votes
1answer
175 views

How to Fire Windows Service start event?

From the thread - Fire windows service stop event I know how to fire an event whenever a system service has stopped. Now I want to fire an event when a service starts. But I can't find any service ...
4
votes
1answer
184 views

Prevent user from switching to other windows

I want to allow my user to work with only a few predefined list of applications during a certain time. I'm using a C# Windows Service that will run in the background and check the active window during ...
0
votes
1answer
98 views

Why are windows definitions missing on msvc++

I have not been coding in MSVC lately. I have been assigned an old code that has lots of errors but most of the missing definitions are of Windows API. For example, LPHANDLER_FUNCTION_EX is not ...
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 ...
1
vote
1answer
462 views

How can I ensure that Windows 2008 R2 will pass the SERVICE_CONTROL_PRESHUTDOWN control notification to a service

I'm writing a service using plain C++ and the windows API and want it to receive the PRESHUTDOWN notifications which are available from Windows 2008 R2. ...
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 ...
1
vote
1answer
306 views

Check Idle Time when running as a Windows Service

Using win32api.GetLastInputInfo() is an easy way to determine a USERS's idle time. However when running as a SERVICE this does not apply (always returns 0). Does anyone know a simple way for a ...
0
votes
1answer
134 views

How to fix service control buttons are disabled for custom service

I have a service that I start & it works fine (I verify it's running by looking at the EventLog messages it posts). For some reason though, services.msc shows the stop button greyed out & I ...
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
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
471 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. ...
0
votes
2answers
372 views

how to show windows service exception in GUI Message?

How i show GUI message show box for Windows Service. I got one link on MSDN but no idea from where I start my work, please guide me. http://msdn.microsoft.com/en-us/library/ms683502(v=vs.85).aspx ...
1
vote
1answer
3k views

How PSExec runs application as SYSTEM user?

I wondered how psexec.exe by sysinternals executes a process as a SYSTEM user. I need to run a tool under a SYSTEM process, but I don't really know how to do that without registering it as a service. ...
1
vote
1answer
180 views

example code and API to log a user on and create a session and desktop - looking for - for Windows 7

I am looking for example code and API to log a user on and create a session and desktop for Windows 7. I need do this from a non-interactive process running as a service.
1
vote
1answer
2k views

example code: A service calls CreateProcessAsUser() I want the process to run in the user's session, not session 0

I am seeking example code: For a service calls CreateProcessAsUser() I want the process to run in the user's session, not session 0 thus far the created process is only running like a service in ...
0
votes
2answers
159 views

Recognize if removable drive was inserted

I have a piece of code to check the removable drives connected to the computer. But I have to check when the drive is available or inserted into the USB port.Should I write a while loop constantly ...
0
votes
1answer
97 views

Exchanging secure data between exe and Service

I have a windows exe which has to write some secure data to HKEY_LOCAL_MACHINE (HKLM). I also have a service running as NetworkService account which has to read that secure data. Note that exe and ...
1
vote
2answers
818 views

Converting volume GUID path to device path

My task is to track adding and deleting disk drives from windows service. I use RegisterServiceCtrlHandlerEx and RegisterDeviceNotification to implement this. My service control handler routine ...
2
votes
2answers
785 views

Interprocess communication with a Win32 service

The ControlService API allows one send a control code to a Win32 service. However, what if I need to send (and receive) more than a control code? What is the best way to establish communication ...
0
votes
1answer
128 views

Trigger a native notification panel/event on Windows?

Im looking to develop an application on Android and some sort of server/service to run on Windows. The Android app will have a number of buttons displayed on the UI and use sockets to communicate with ...
1
vote
3answers
141 views

Enumerating Window Handles (created from a Service) on a Service to determine their captions

I have a service that needs to run an application (lets call it X) that in tern uses Excel automation. Often application X when automating Excel will have Excel display a dialog. What and why the ...

1 2