I\'m trying to open a process with my debugger using CreateProcess with the DEBUG_PROCESS and DEBUG_ONLY_THIS_PROCESS flags and the the process is opened, but then when I try to call SymInitialize wit
I understand that startup_info is a pointer to a STARTUPINFO structure I have a function which I pass startup_info by reference into it. So we can say that I am passing a pointer b开发者_开发问答y re
I created a wrapper in C++ for the cl.exe (the Visual Studio compiler). To do this, I changed the PATH environment variable so that Visual Studio finds my cl.exe first. In my cl.exe, I then create a p
I am creating an application that will start another process using CreateProcess(). And in the parent process I will use GetExitCodeProcess() to check whether the process active or not.
I 开发者_高级运维wondered how psexec.exe by sysinternals executes a process as a SYSTEM user. I need to run a tool under a SYSTEM process, but I don\'t really know how to do that without registering i
i just developed a tiny little game in textmode c++, what i actually wanted to do is that when the game starts it should spawn a media player in hidden mode and play the mp3 file, also i want to close
I create a x86 process under WindowsServer2003 x64, ok, it work fine! but I try creating a x86 process under VISTA x64开发者_开发问答.
I\'m trying to compile legacy code from Windows XP under a new environment in Windows 7. It compiles but fails at runtime.
In C++ I want to launch a process from my Desktop Application in \"Local System acc开发者_JAVA技巧ount\" or \"System Context\". My application executes with admin privileges.
I have executed a process using CreateProcess, but I want to dump the memory area allocated to the process how to do that?