Tagged Questions

2
votes
2answers
320 views

Windows Service running as LocalSystem but needs to start a process as the currently logged on user

I'm running a windows service (written using .NET) as the user - LocalSystem. From the service, I need to start a process but as the currently logged on user. If I user Process.Start(process_name), ...
2
votes
1answer
1k views

Why CreateProcessAsUser requires interactive window station on Vista/Windows 7?

I had to delve into this because the code that worked fine on Windows 2003/XP doesn't on Windows 7. Application launched by the use of CreateProcessAsUser fails with 0xc0000142 error code. The ...
0
votes
0answers
47 views

System.Diagnostics.Process not accepting credentials

I am trying to execute a batch file using the Process class. This code is in the middle of a larger section of code where I am using LogonUser() and WindowsIdentity.Impersonate() to impersonate the ...
0
votes
0answers
137 views

Access Denied for Process.Start() when <identity impersonate=“true” />

My head is flat from banging my head with this issue. I have set <identity impersonate="true" /> for AD things but when I re-run the app, I get "Accesss Denied" error when Process.Start() is ...