4
votes
4answers
415 views
How to launch a GUI program in a Windows service?
When I run a service as LocalSystem account, I can use following codes to launch a GUI program under current login account:
WTSGetActiveConsoleSessionId->WTSQueryUserToken->CreateProcessAsUser
…
3
votes
3answers
740 views
Why is CreateProcess failing in Windows Server 2003 64-bit ?
Hi,
We have a 32-bit application that launches other 32-bit applications during its process. The application is working fine on other 64-bit platforms but on Windows Server 2003 64-bit, we get an …
3
votes
2answers
328 views
AssignProcessToJobObject fails with “Access Denied” error when running under the debugger
You do AssignProcessToJobObject and it fails with "access denied" but only when you are running in the debugger. Why is this?
2
votes
4answers
101 views
How can I create a process in a portable manner?
Hi, I'm trying to write a program which needs to create some other processes. I'm used to the Windows API but now I need my program to be able to run in a Linux platform too.
Is it possible to do it …
2
votes
3answers
535 views
Vista: Can an EXE bypass user confirmation while invoking another EXE?
I have 2 applications written in Delphi. The first exe (with a user interface) calls another using ShellExecuteEx(), which runs as a background process.
When the first exe invokes the second, one of …
2
votes
2answers
2k views
How to get CreateProcess/CreateProcessW to execute a process in a path > MAX_PATH characters
I'm trying to get either CreateProcess or CreateProcessW to execute a process with a name < MAX_PATH characters but in a path that's greater than MAX_PATH characters. According to the docs …
1
vote
1answer
185 views
“Wrong” app gets pinned to taskbar (Windows 7)
I have an application that gets started via a shortcut. This application than starts a Java GUI application with CreateProcess().
When the Java application gets pinned to the taskbar the javaw.exe …
1
vote
7answers
564 views
CreateProcess doesn’t passes command line arguments
Hello I have the following code but it isn't working as expected, can't figure out what the problem is.
Basically, I'm executing a process (a .NET process) and passing it command line arguments, it …
1
vote
2answers
274 views
Compiling GWT code with a large number of parameters — char limit on CreateProcess?
Hello all,
I am trying to run an ant build script that compiles GWT. This script includes a large number of libraries, each with a relatively long path. My GWT code only touches some of these …
1
vote
2answers
244 views
How can I start explorer.exe via C++?
I'm trying to programmatically start explorer.exe but I'm not having any luck.
This is my code:
cout << pName << "died, lets restart it." << endl;
STARTUPINFO startupInfo = {0};
…
1
vote
5answers
830 views
CreateProcessWithLogonW() problems - Need to launch sub-processes with the same user
I have a Windows executable that is launched from within a service by calling CreateProcessWithLogonW() with a set of specfied user details.
This works fine and the process starts as expected. …
1
vote
4answers
868 views
Can I access the string returned from a Delphi CreateProcess command?
I'm using the Win32 CreateProcess function to perform a call to an external executable. The executable returns a string.
Is there a way I can capture and interrogate the returned string after …
1
vote
2answers
816 views
Making CreateProcess inherit the console of the calling process
When I call CreateProcess in Windows, the new process doesn't seem to inherit the console of the calling process. I made a test program that runs "ruby xtest", xtest being a script that writes …
1
vote
3answers
267 views
Launching a Process from a Service
I'm trying to launch another process from a service (it's a console app that collects some data and writes it to the registry) but for some reason I can't get it to launch properly.
I basics of what …
1
vote
3answers
2k views
Delphi - Gracefully Closing Created Process in Service. (using tprocess / createProcess)
I have a Windows Service written in Delphi which runs a number of programs.
On Stopping the service, I want to also close these programs. When the service was originally written, this worked fine, …
