views:

20

answers:

1

We have a windows service running under a network account that calls and runs an ActiveX exe. The exe is running under the local system account, not the network account of the service. Can anyone point me in the right direction for making the exe run under the network account?

+1  A: 

You want to use the function call CreateProcessAsUser().

Rook
Thanks Rook!! That pointed me in the right direction!
Jesse McCulloch
@Jesse M no problem.
Rook