The createprocessasuser tag has no wiki summary.
1
vote
1answer
29 views
How CreateProcessAsUser on Windows Using Delegated Credentials from SSPI?
I work on a Kerberos logon infrastructure (Single Sign-On) with:
A client which is authenticated to the Kerberos Key Distribution
Center.
A principal service server using Kerberos as authentication.
...
0
votes
0answers
14 views
inject dll with createprocessasuser using detours
I'm trying to hook CreateProcessAsUser using detours, so that I can inject my dll into that process which is being created. But so far I was using DetourCreateProcessWithDllEx api for all ...
1
vote
2answers
40 views
Is there any way of know when CreateProcessAsUser's processes exit from C#?
I'm currently playing with CreateProcessAsUser using P/Invoke from c#, in order to launch process as limited users from a windows Service running in SYSTEM Account.
My objective is to have a Service ...
0
votes
0answers
56 views
CreateProcessAsUser fail,use GetLastError() to get the error code is 1314
I use win7 os and the develop environment is vs2005.
The situation is I want to create the process as current account's priviledge.(such as: in the normal account ,right click the program choice "run ...
0
votes
0answers
127 views
Pipe stdin/stdout/stderr completely to Process created with CreateProcessAsUser
What i'm trying to do is writing a little wrapper, that allows me to start an application on the Windows GUI of the currently locked in User from withing a service. The wrapper is called as following: ...
0
votes
1answer
35 views
CreateProcessAsUser from service has security issues accessing a remote machine
I'm trying to synchronize my local (remote) database with a centralized consolidated database on the server (using Sybase database). The synchronization has to happen at a scheduled time, and i am ...
0
votes
0answers
115 views
Unable to run a Process by Impersonating Local System to Network Service account
I want to run one Executable with Network Service privilege mode in a different Process. So I am trying to impersonate the current User (i.e. Local System) to NT AUTHORITY\NETWORK SERVICE. I am using ...
3
votes
0answers
845 views
Using a vb.net application running as SYSTEM, how do I start a detached process for each logged on user?
After weeks of research on this topic I've finally decided to start a thread of my own in hope there is someone out there with experience that can help. I've scoured the internet trying to understand ...
0
votes
0answers
141 views
Cannot start external process from ASP.NET page: access denied
In our asp.net application we run an external executable which will do some job, output result, and then to pass this result to the user.
There is a local windows user called test1 with password 1, ...
0
votes
1answer
37 views
want thread to complete before process executes
I'm creating a process as a User(CreateProcessAsUser()) to launch an application on the users screen. I need to somehow get a function to run on the user's screen before the application launches. My ...
0
votes
1answer
338 views
CreateProecssAsUser elevated privilege?
I'm getting an error with my CreateProcessAsUser function. It says "The requested operation requires elevation. " I thought i had given it the highest privilege i could. Anyone help? thanks
My code ...
1
vote
1answer
162 views
How to get Windows SYSTEM user token
Operating system is Windows 7 or higher with UAC enabled. Calling process has admin rights, already confirmed by the UAC box.
I want to spawn a new Console window (cmd.exe) under user SYSTEM (don't ...
0
votes
1answer
682 views
CreateProcessAsUser in user session (other than 0) from service (IIS 7)
My setting is:
Windows Server 2008, IIS 7
What I would like to accomplish:
IIS 7 receives a request from my website to do some 3D operations (in WPF) and in the end IIS 7 should render an image ...
0
votes
2answers
237 views
CreateProcessAsUser, call dll function
With CreateProcessAsUser I can call an .exe file somewhere on the hard disk:
CreateProcessAsUser(IntPtr hToken, string lpApplicationName, string lpCommandLine,
ref ...
2
votes
0answers
230 views
Successive processes created via CreateProcessAsUser from web service using delegation cannot read/write to network share
What could be causing successive processes created via CreateProcessAsUser from web service using delegation to encounter System.UnauthorizedAccessException exceptions when trying to access network ...
3
votes
1answer
421 views
Run application on Win7 logon screen
I'd like to run an application on the logon screen of Windows 7 from a service.
I've been doing long researches on this and trying out different ways already, but unfortunately wasn't fully ...
2
votes
0answers
287 views
CreateProcessAsUser fails in Windows 7 after 7 invocations
My service spawns a process for each core on the target machine using CreateProcessAsUser. The process is a MFC program which has been modified to run using commandline parameters rather than GUI ...
2
votes
0answers
550 views
CreateProcessAsUser not from a service
I want to run an application under another user account's (non-elevated) credentials while that user is already logged-in. Specifically, I want my application's installer (which runs under any ...
1
vote
1answer
2k 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
86 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 ...
2
votes
2answers
1k 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();
...
0
votes
2answers
312 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 ...
4
votes
1answer
1k 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: ...
0
votes
1answer
994 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
1answer
939 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
472 views
CreateProcessAsUser not setting the user correctly
Calling a GUI app using
[DllImport(
"advapi32.dll",
EntryPoint = "CreateProcessAsUser",
SetLastError = true,
CharSet = CharSet.Ansi,
CallingConvention = ...
1
vote
0answers
706 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
115 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
2answers
451 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
1k 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
526 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 ...
4
votes
5answers
6k 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, ...
0
votes
2answers
2k 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 ...
3
votes
1answer
2k 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 ...
3
votes
2answers
2k 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.
0
votes
1answer
1k 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 ...
6
votes
2answers
4k 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, ...
8
votes
1answer
8k 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 ...
0
votes
1answer
603 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 ...
2
votes
1answer
2k 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 ...
4
votes
3answers
7k 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 ...
2
votes
0answers
1k 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 ...
5
votes
2answers
4k 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 ...
5
votes
3answers
15k 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 ...
1
vote
1answer
1k 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 ...
