Tagged Questions
The createprocessasuser tag has no wiki summary.
6
votes
1answer
3k views
starting a UAC elevated process from a non-interactive service (win32/.net/powershell)
I'm using a thrid party Windows service that handles some automation tasks by running scripts and executables using CreateProcessAsUser(). I'm running into problems on Windows Server 2008 due to UAC ...
4
votes
2answers
3k views
How do I get a valid user token for CreateProcessAsUser?
I have an application that is running as normal user, and a service running as local system. I want the application to be able to tell the service to start the application again, once the service has ...
3
votes
5answers
2k views
How to get Currently logged user's session ID?
I'm running a process from inside a windows service using
ProcessStartInfo processStartInfo = new ....
Process.Start(processStartInfo);
The problem is, if I run service under local system account, ...
3
votes
2answers
1k views
Delphi and CreateProcessAsUser example?
Does anyone have an example of how to use CreateProcessAsUser in Delphi? I'm using Delphi 2009, not the .NET Delphi.
3
votes
1answer
2k views
Windows 2008 RenderFarm Service: CreateProcessAsUser “Session 0 Isolation” and OpenGL
I have a legacy Windows server service and (spawned) application that works fine in XP-64 and W2K3, but fails on W2K8. I believe it is because of the new "Session 0 isolation" feature.
Consequently, ...
3
votes
3answers
9k views
Calling CreateProcessAsUser from C#
I've been attempting to create a new process under the context of a specific user using the CreateProcessAsUser function of the Windows API, but seem to be running into a rather nasty security ...
2
votes
2answers
135 views
How to start a Console App as running under the System Windows user account?
I tried
var process = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = filename,
UserName = "System",
UseShellExecute = false,
},
};
process.Start();
...
2
votes
1answer
1k views
LogonUser -> CreateProcessAsUser from a system service
I've read all the posts on Stack Overflow about CreateProcessAsUser and there are very few resolved questions, so I'm not holding my breath on this one. But it seems like I'm definitely missing ...
2
votes
1answer
988 views
Creating a process in a non-zero session from a service in windows-2008-server?
I was wondering if there is a simple way for a service to create a process in user session?
My service is running as a user(administrator) account and not as a LocalSystem acount, therefore i can't ...
2
votes
3answers
3k views
CreateProcessAsUser error 1314
I want create a process under another user. So I use LogonUser and CreateProcessAsUser. But my problem is, that CreatePtocessAsUser always returns the errorcode 1314, which means "A required privilige ...
1
vote
1answer
251 views
example code: A service calls CreateProcessAsUser() I want the process to run in the user's session, not session 0
I am seeking example code:
For a service calls CreateProcessAsUser() I want the process to run in the user's session, not session 0
thus far the created process is only running like a service in ...
1
vote
1answer
60 views
Little help with a windows service
(c#, .net framework 2.0 desired)
Hello.
This is a pratical and technical question... you have been warned. :)
I have a windows service, which requires each user to provide a login to an online ...
1
vote
1answer
446 views
why is CreateProcessWithTokenW failing with ERROR_ACCESS_DENIED
I have a call to CreateProcessWithTokenW that is failing with access denied. Any ideas how to debug this?
The call to CreateProcessWithTokenW is here: ...
1
vote
0answers
769 views
Loading user profile from a service
In a service, I try to use the following code to launch a program :
HANDLE hPipe;
HANDLE hToken;
PROFILEINFO stProfileInfo;
char szUserName[64];
DWORD dwUserNameSize = 64;
// Take the identity of ...
1
vote
1answer
782 views
CreateProcessAsUser not working correctly in my experiments
I am trying to do the following:
1. I am logged in as Administrator account in my XP with SP2 machine running VS.NET 2005
2. This machine also has another account user1 which is a guest account
3. I ...
0
votes
0answers
39 views
Multi-level child process creation from ASP.NET with impersonation
I need to create some runner process (.NET WinForms for now) from ASP.NET website - 1st level. In own turn, this runner process creates other processes (2nd level). Impersonation must flow from ...
0
votes
2answers
156 views
C++ LPTSTR problem calling CreateProcessAsUser with getenv
I am trying to call function CreateProcessAsUser. Passing constant string is fine. Trying to pick up an Environment variable using char* getenv(const char name) is causing me a problem.
If I use ...
0
votes
0answers
302 views
Problem with parameters in CreateProcessAsUser
I've been assigned to build a windows service that is capable of launching a proccess into the current interactive user, using VB.NET 2005.
After some research, i've built the following code:
Dim ...
0
votes
0answers
69 views
Process with NO access to disk ( WIN32 )
I want a process to have NOT access to disk. I get it doing the next code...
ImpersonateAnonymousToken( GetCurrentThread() );
bool isCreated = createFileInDisk(); // <- OK: it returns false
...
0
votes
1answer
401 views
How to CreateProcessAsUser and make it a foreground window?
I'm trying to start an UI using CreateProcessAsUser but the window doesn't come as the foreground Window.
I wouldn't mind if it was a normal window, but this window triggers the UAC prompt and it ...
0
votes
2answers
232 views
CreateProcessAsUser not setting the user correctly
Calling a GUI app using
[DllImport(
"advapi32.dll",
EntryPoint = "CreateProcessAsUser",
SetLastError = true,
CharSet = CharSet.Ansi,
CallingConvention = ...
0
votes
0answers
348 views
CreateProcessWithUser fails to impersonate user with errors 87, 1349
On a windows 2003 server, running from a service, createprocessasuser fails with error 87, and an error from WLEXECSERVER that says fails to impersonate user.
On a windows 2003 server 64 bit, running ...
0
votes
0answers
79 views
Not able to read from pipe when process is launched Elevated
I am using PInvoke API's for achieving this...
I am having a scenario where i need to launch a process and this newly created process will write to the console and i am using pipe to read the data ...
0
votes
1answer
274 views
Create Process with FS Virtualization Enabled
With UAC disabled, I need to create a process with the same characteristics as the process created with UAC enabled - basically I'm emulating process creation with UAC enabled.
My only roadblock is ...
0
votes
1answer
451 views
Is it possible silently run something as Administrator
How to trick UAC in Vista and Windows 7?
How can I run something that needs not just administrator rights, but especially must be told to run as Administrator.
I've tried start a process with given ...
0
votes
1answer
258 views
Run app from a service using CreateProcessAsUser
I'm still trying to run an app calling it from windows service. I tried to use the way described by Scott Allen. It works. But still I can't bring the app to the screen to interact with it. Help me ...
0
votes
2answers
940 views
Get Window Station for a non-interactive user per process, user or session?
When using CreateProcessAsUser we pass STARTUPINFO and with lpDesktop NULL, the target is winsta0/default, the interactive desktop of the interactive user.
I wish to target a window station in ...
0
votes
1answer
781 views
CreateProcessAsUser doesn't draw the GUI
I have a windows service running under "SYSTEM" account that checks if a specific application is running for each logged in user. If the application is not running, the service starts it (under ...
0
votes
1answer
416 views
Impersonated process will not log on to Oracle with Windows Authentication
I am running a asp .net web service on IIS7. The latter is running on a Windows 2008 R2 Server. IIS7/the web service is configured for asp .net impersonation. The worker process owner is set to ...