search for: interactive_process

Displaying 1 result from an estimated 1 matches for "interactive_process".

2007 Sep 21
0
win32-service of win32utils
Ah, excellent. Glad you got it figured out! Regards, Dan Yuhong Liu wrote: > Hi Dan, > > I think I have figured out the problem. The issue is because of the > setting of service type. So by default the service type is set as > Service::WIN32_OWN_PROCESS | Service::INTERACTIVE_PROCESS. This means > the service is configured to interact with the desktop, you cannot > change the service to run under a domain user account. So I changed the > code of configuring service by setting service type as WIN32_OWN_PROCESS. > > s.configure_service{ |s| > s.start_name =...