Tagged Questions
0
votes
0answers
43 views
How can I know that threads of my application are working or hovered?
I need to write application that collect information about processes in windows. I can read number of threads and thread's id, memory that used by process. But i dont know how i can check working or ...
0
votes
1answer
34 views
Detecting if an Internet Explorer process is running Flash Player
Ok, here is a little 1 million dollars question. I'm developing an application that checks if any of your browsers is currently running a Flash application. Here is my core native implementation:
// ...
-2
votes
0answers
20 views
What is a ModuleFileName? Windows OS
I am trying to identify programs that are in focus and I have discovered I can do it by using the program's ModuleFileName. However, I cannot find a clear explanation of what the path it outputs is ...
-3
votes
1answer
50 views
time of 'fire'ing' (not creating) proces in winapi
I need to obtain an exact time of fire'ing process
(not the time of the creation of the proces which
as I know is some time later) I need to obtain
the time of 'running' program yet before its image
...
0
votes
0answers
71 views
AttachConsole(…) alternative for Windows8
AttachConsole(ATTACH_PARENT_PROCESS) returns TRUE and GetLastError() returns ERROR_NOT_SUPPORTED when running console (ie parent process is cmd.exe) application on Windows8. Is there any alternative ...
0
votes
1answer
78 views
implementing pipe in C for shell with winapi
I m implementing a pipe in C for a shell I am writing, the pipe should be able to support stuff like ls | grep | grep | grep ( in other words, it should be recursive).
Shell is running on cygwin ...
2
votes
3answers
60 views
Windows API STARTUPINFO destroyed?
After creating a process and waiting for it to finish, does it's STARTUPINFO still available or is it destroyed ?
STARTUPINFO si;
bRes = CreateProcess(NULL, command, NULL, NULL, TRUE, 0, NULL, NULL, ...
0
votes
2answers
165 views
how do you find what window(Handle) takes process ownership? And get the handle for that..?
The EnumWindows and EnumChildWindows grab many many window handles. I just want the top most for each running process. A lot of them return 0 from within Process.GetProcesses(), what's the deal?
I've ...
0
votes
0answers
58 views
Deadlock when adding COM GUI component to HWND of other process (Firefox, Plugin, IExplorerBrowser)
I am trying to embed an IExplorerBrowser (the main GUI of Windows Explorer) into a Firefox XUL or HTML page.
The instance of IExploerBrowser is created using js-ctypes in the Firefox-process ( with ...
4
votes
1answer
114 views
How to check if a process is closed/alive?
I am writing a program in C++. In my code I run the process A using the function CreateProcess. The process A starts another process B. B works for some time and then closes. The runtime of B depends ...
1
vote
1answer
77 views
Launch executable with parameters when running as Network Service
How do I launch an executable with supplied arguments if I'm running as network service? I've tried using ShellExecuteEx from within my program (which runs as Network Service):
try
{
DWORD ...
0
votes
1answer
50 views
Is it possible to associate data with a running process?
As the title says, I want to associate a random bit of data (ULONG) with a running process on the local machine. I want that data persisted with the process it's associated with, not the process thats ...
0
votes
2answers
76 views
Closing sub-processes spawned by CreateProcess
I'm working with CreateProcess to run a process/application of mine.
The purpose is to run it, do something, wait for some indication, and close it (Using TerminateProcess).
What I noticed is that ...
0
votes
1answer
195 views
Win32 API : User Impersonation technique to run a process as some other user?
I'm writing an application which runs a third-party executable as some less privileged user
on Windows. I used following Win32 API functions for this:
LogonUser(L"UserName", L"Domain", NULL, ...
1
vote
1answer
237 views
How to wait until the async CopyHere (Shell API command) completing the ZIP compression?
I need to Zip and Unzip files in Delphi without using a 3rd party component.
How to wait until the async CopyHere completing the ZIP compression?
The following code is not working perfectly.
Code ...
3
votes
1answer
65 views
boost.process batch script is not able to to run another program
I am invoking a batch script through cmd.exe /C with Boost.process
boost::process::context context;
context.stdout_behavior = boost::process::capture_stream();
#ifdef WIN32
...
0
votes
1answer
82 views
Clarification on calling CreateProcessAsUser with command line parameters using C++
I'm somewhat confused about the proper way of calling CreateProcessAsUser with command line parameters. So without going into details of filling out the rest of its parameters, can someone confirm ...
3
votes
3answers
125 views
Far jump in ntdll.dll's internal ZwCreateUserProcess
I'm trying to understand how the Windows API creates processes so I can create a program to determine where invalid exes fail. I have a program that calls kernel32.CreateProcessA. Following along in ...
0
votes
1answer
89 views
Get ProcessModule.MainWindowHandle
Given:
Process p;
It's possible for me to do the following:
IntPtr hWnd = p.MainWindowHandle;
This gives me the HWnd for the main window of the main module.
What I would like to do is get the ...
2
votes
1answer
102 views
WaitForSingleObject signals too soon ImageMagick convert
I'm converting PDFs to JPGs using ImageMagick. This conversion takes a couple hundred milliseconds to run, so I've got a WaitForSingleItem waiting on the process handle.
Unfortunately, the process ...
1
vote
0answers
71 views
Is there anything to differentiate microsoft system processes running in a user's session with C++?
Just curious, say, if I enumerate all processes running in a user's session, is there any way to tell which are Windows system processes (such as explorer.exe, taskhost.exe, dwm.exe, etc.) and which ...
1
vote
2answers
410 views
CreateProcess succeeds, but GetExitCodeProcess returns C0000142
I'm trying to start a user-mode process from a service using CreateProcessAsUser() API similar to this code. My code works fine in 99% of the time, except at times that API succeeds, I get the process ...
0
votes
1answer
167 views
CreateThread string to LPVOID
I'm trying to make a thread to handle ZIP archiving:
HANDLE hThread = CreateThread(
NULL,
0,
ZipProcess,
(LPVOID) cmdline.c_str(),
0,
NULL);
I'm ...
1
vote
1answer
525 views
Kill process started with ShellExecuteEx
1) I started a process with ShellExecuteEx
2) retrieve the PID with
GetProcessId(shellExInfo.hProcess)
Sample Code:
SHELLEXECUTEINFO shellExInfo;
shellExInfo.cbSize = sizeof(SHELLEXECUTEINFO);
...
0
votes
1answer
433 views
RunPE dump process
Is it possible to dump its own process when it got started from runpe?
Where would be the startaddress of the process, etc.?
EDIT:
I have this unit to run an executable from memory:
unit ...
0
votes
0answers
84 views
How to Create Several Processes with WINDOWS API?
I am trying to create five processes that use child process and prints the given arguments on the screen. However, I only see one new terminal opened. How can i see those five processes, each one ...
1
vote
2answers
92 views
How would I migrate to a new process in C?
this is a pretty complicated procedure so please bear with me!
The concept is straight forward anyway:
I have a C program that generates a batch file according to user input and executes it. In all ...
0
votes
1answer
67 views
how to access UNICODE_STRING CommandLine variable?
I found out that the command line arguments for a program run in windows are stored in Process Environment block.I found out more that inside PEB there is a structure called ...
1
vote
2answers
581 views
Why can't I embed these Applications in my Form?
Intention
Using the following code, I managed to load some applications in my windows form.
Code
What this function does is...
stating a process
embedding the process into a panel of my form
...
1
vote
1answer
81 views
Access Violation when duplicating token
Below code generates:
Unhandled exception at 0x749ab763 in MyProgram1.exe: 0xC0000005: Access violation writing location 0x00d4eb38.
SECURITY_ATTRIBUTES sa = {0};
sa.nLength = ...
2
votes
3answers
849 views
Load the same dll multiple times [closed]
I want to load the same dll e.g. Lib.dll multiple times!
-> need creating a new process (CreateProcess function) for every LoadLibrary!
Anyone have an example or some hints?!
Thx and greets
2
votes
2answers
244 views
How integrity level of a process is determined?
I want to launch a process with high integrity level. The parent process is running as a System service, LocalSystem account. In one Windows 2008 machine, the sub process is of high level while in ...
1
vote
1answer
131 views
free a file used by others process in c#
I would like in a software to log:
which processes are accessing a file
and
how to force free file from access by others processes (is it possible with API window?)
notice that you are enable to open ...
0
votes
1answer
251 views
windows stack and heap address ranges
Working with Linux until now where stack addresses are very high and heap addresses
are pretty low (as seen by printing heap and stack addresses using a C program),
I have a problem with the win32 ...
1
vote
2answers
62 views
Process ID of http request, installer
I am trying to find out if any http requests are made during installation of an msi package. It appears to me that the process under which the http request is made shares no lineage with the process ...
1
vote
1answer
85 views
signal a perl process from an independent perl process to trigger code in handler
I am using perl v14 on windows. I have 2 simple files:
$SIG{'INT'} = sub {
print "got SIGINT\n";
#some useful code to be executed
...
1
vote
2answers
772 views
Show WPF window from another application in C#
I have an WPF application called app1 which has a windows named window1. When the user clicks the close button of window1, the app does not close but the window1 hides (this.hide()).
I want to check ...
1
vote
1answer
285 views
Cannot run external file with Ms Visual C++ 2010 [closed]
this is my first time posting on this portal. So far I found solutions to all my problems here but this one is kinda hard one. I tried many codes from here and I know similar problems have been posted ...
0
votes
1answer
88 views
Why do I get a hexadecimal value when I print a string?
What's wrong? Why do i get 0x0000etc on output?
int _tmain(int argc, _TCHAR* argv[])
{
HANDLE hSnapshot = CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, 0 );
...
0
votes
0answers
90 views
I want to calculate memory usage for all processes running but OpenProcess() fuction fails on some of them.
I've tried PROCESS_QUERY_LIMITED_INFORMATION in this function:
hp = OpenProcess( PROCESS_QUERY_LIMITED_INFORMATION, 0, pid );
But it still fails.
0
votes
1answer
366 views
Win32 Execute a child process in the current console and exit without returning to parent
I'm currently working on a little win32 utility to read a configuration file/registry entry, and depending on the value, execute a child process with the current process command line arguments. It ...
0
votes
2answers
159 views
Suspend process after a specific child process is started
I have a loader.exe which starts a process A by using CreateProcess(..)
Process A starts after a while another process B.
I would like to suspend process A and process B when B will be started by ...
0
votes
0answers
172 views
C: calculating memory usage of a process on windows
I read MSDN library and I found GetProcessMemoryInfo and PROCESS_MEMORY_COUNTERS, but it has a lot of information and I don't know which i should use. I am writing a task-manager and it should show ...
7
votes
3answers
1k views
How to kill a process tree in Windows
Hi i have this process tree:
The above screenshot shows a process tree. In my Perl script i know the PID of dscli. I have written the following code to kill a single PID:
use Win32::Process;
use ...
0
votes
1answer
132 views
Process32Next fails with ERROR_INSUFFICIENT_BUFFER (windows 7)
I am trying to get a list of all the executable paths of running processes
The do-while loop (shown below) starts off and after about 90 something iterations it fails with a ERROR_INSUFFICIENT_BUFFER ...
1
vote
0answers
191 views
Is there a better method to check if a certain notepad file has been open?
My current work:
-working in a different thread-
while (true)
{
foreach (Process myProc in Process.GetProcessesByName("Notepad"))
{
if (myProc.MainWindowTitle.Contains("*MyTitle*"))
{
...
4
votes
3answers
136 views
How can I reset a Windows process to a previous state?
I have a large application with a lot of threads and a lot of complex static objects. Currently, when a user logs out, the application is restarted to forcefully reset the application to it's initial ...
4
votes
2answers
348 views
How can i tell if i'm being called during DLL_PROCESS_DETACH after ExitProcess has been called?
i have a unit in Delphi that (has the option) to provide a single global object:
var
InternalThemeParkServices: TThemeParkServices;
function ThemeParkServices: TThemeParkServices;
begin
if ...
2
votes
2answers
693 views
Get a a process window handle by click in C#
At the moment, I can get a list of running processes with a main window using System.Diagnostics.Process.GetProcesses() and executing a simple LINQ query.
Then, I can import user32.dll and the ...
1
vote
1answer
349 views
C++ Alternative to System() for starting multiple command prompts. WINAPI ( No MFC )
I am writing a program which is used to launch different command line applications. The problem is when I run 1 application, command prompt takes control of the program and will not allow me to access ...



