vote up 2 vote down star

I have a Windows service that runs as mydomain\userA. I want to be able to run arbitrary .exes from the service. Normally, I use Process.Start() and it works fine, but in some cases I want to run the executable as a different user (mydomain\userB).

If I change the ProcessStartInfo I use to start the process to include credentials, I start getting errors - either an error dialog box that says "The application failed to initialize properly (0xc0000142). Click on OK to terminate the application.", or an "Access is denied" Win32Exception. If I run the process-starting code from the command-line instead of running it in the service, the process starts using the correct credentials (I've verified this by setting the ProcessStartInfo to run whoami.exe and capturing the command-line output).

I've also tried impersonation using WindowsIdentity.Impersonate(), but this hasn't worked - as I understand it, impersonation only affects the current thread, and starting a new process inherits the process' security descriptor, not the current thread.

I'm running this in an isolated test domain, so both userA and userB are domain admins, and both have the Log On as a Service right domain-wide.

flag
Is it Vista OS? Does it happen when you launch Notepad.exe as well? – Yuval Peled Mar 24 at 17:45
Can you put a sample code of your arguments? – Yuval Peled Mar 24 at 17:56
Sorry I haven't been able to get back to you sooner. If you still need some sample code I have edited my answer to add a link to an article I've recently posted with source code. – Stephen Martin Apr 1 at 15:38

5 Answers

vote up 2 vote down check

When you launch a new process using ProcessStartInfo the process is started in the same window station and desktop as the launching process. If you are using different credentials then the user will, in general, not have sufficient rights to run in that desktop. The failure to initialize errors are caused when user32.dll attempts to initialize in the new process and can't.

To get around this you must first retrieve the security descriptors associated with the window station and desktop and add the appropriate permissions to the DACL for your user, then launch your process under the new credentials.

EDIT: A detailed description on how to do this and sample code was a little long for here so I put together an article with code.

link|flag
Thanks; it looks like this is the cause of the problem. Do you have any suggestions on the best way to retrieve the DACL and add permissions for the 2nd user? – Zack Elan Mar 25 at 14:42
You don't need to set the Window Station and Desktop DACLs if you create the service interactive. – Adam Ruth May 26 at 7:49
vote up 0 vote down

How are you setting the domain, user, and password? Are you setting the domain properly as well as the password (it must use a SecureString).

Also, are you setting the WorkingDirectory property? When using a UserName and Password, the documentation states that you must set the WorkingDirectory property.

link|flag
I'm setting domain, username and password (as a SecureString) correctly - if I run this code outside of the Windows service, it works as expected. Setting the WorkingDirectory doesn't seem to have any affect, either. – Zack Elan Mar 24 at 15:47
vote up 2 vote down

This is symptomatic of :
- insufficient rights;
- failure load of a library;

Use Filemon to detect some access denied or
WinDbg to run the application in a debugger and view any issue.

link|flag
now i read your answer... +1 for the Filemon reference, I think that will point out the problem. – Moose Mar 24 at 17:03
vote up 0 vote down

It may be that any process kicked off by a service must also have the "Log on as a Service" privelege.

If the user id that you are using to start the second process does not have administrative rights to the box, this could be the case.

An easy test would be to change the local security policy to give the userid "Log on as a service" and try it again.

Edit: After the additional info..

Grazing over Google on this one, it appears that 0xc0000142 relates to not being able to initialize a needed DLL. Is there something that the service has open that the spawned process needs? In any case, it looks like it has to do with the process that's kicked off, and not how you are doing it.

link|flag
Both users have Log on as a Service enabled. – Zack Elan Mar 24 at 16:13
Added some more to my answer. It looks like you may have some conflicts between the service and the spawned process based on the 0xc0000142 error. – Moose Mar 24 at 17:02
vote up 1 vote down

I had this problem today, and I spent quite some time trying to figure it out. What I ended up doing was to create the service as interactive (using the Allow service to interact with desktop checkbox in services.msc). As soon as I did that the 0xc0000142 errors went away.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.