Starting a process with credentials from a Windows Service

后端 未结 8 1611
情话喂你
情话喂你 2020-11-27 05:42

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 s

8条回答
  •  误落风尘
    2020-11-27 06:12

    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.

提交回复
热议问题