createprocess
Is it possible to execute a .NET dll without an exe to load it?
I\'m curious if there\'s a way to execute a static .DLL method in a new process without having to create an .EXE for it?[详细]
2023-02-14 04:31 分类:问答How do I know when CreateProcess actually started a process?
I\'m having trouble which boils down to wishing CreateProcess were StartProcess. The trouble is that there are circumstances under which CreateProcess returns true when it created the process but the[详细]
2023-02-11 01:00 分类:问答Why does it take longer to call a fork() than it does to call pthread_create()?
I was wondering this, is it because they only need a stack and stor开发者_如何转开发age for registers so they are cheap to create ?[详细]
2023-02-10 16:17 分类:问答Avoid hourglass after calling CreateProcess
In my Win32 app I embed ffplay.开发者_StackOverflowexe for video preview. It works great but each time I start a preview the cursor becomes \"busy\", i.e. arrow+hourglass. I want to avoid that.Set STA[详细]
2023-02-09 04:49 分类:问答CreateProcessW fails (ACESS_DENIED)
I currently convert an application to use CreateProcessW() instead of Runtime.exec() as I need the information it provides. However any call to CreateProcessW() fails with the error code 5 (ACCESS DEN[详细]
2023-02-07 11:45 分类:问答How could i Create a process with hiding the process window (from the task bar) in winXP? with CreateProcess function?
/* CreateProcess initialization */ STARTUPINFO si; PROCESS_INFORMATION pi; memset(&si, 0, sizeof(si));[详细]
2023-02-05 18:08 分类:问答C++ CreateProcess SW_HIDE firefox, chrome, safari
I\'m writing a web testing framework for windows that uses multiple browsers to test web apps. I want to launch the browsers hidden but it\'s not working.[详细]
2023-01-30 03:24 分类:问答AppCertDlls: Process creation slowdown on Win32 caused by virus
I\'ve been enjoying a hefty process creation penalty on my Windows XP Home SP3 for about two months. The problem is most manifest and annoying with tasks that do create lots of processes, such as shel[详细]
2023-01-28 03:43 分类:问答Win32 CreateProcess: When is CREATE_UNICODE_ENVIRONMENT *really* needed?
The CreateProcess documentation states (my bold emphasis): lpEnvironment [in, optional] [...] If the environment block pointed to by lpEnvironment contains Unicode characters, be sure that dwCreati[详细]
2023-01-25 07:46 分类:问答How does a UNICODE environment block look like to start a new process via CreateProcessW() on Windows?
Essentially, I would like to create a new process and define the environment for it from the parent开发者_Go百科 process. I would like to use CreateProcessW and pass a (modified) UNICODE environment i[详细]
2023-01-25 01:15 分类:问答