Tagged Questions
The win32-process tag has no wiki summary.
6
votes
6answers
493 views
Deny Access to Kiosk program process
I have a kiosk app and have to disable task manager always to prevent closing the program by users .
But some users need the TaskManager to close hanging programs.
Any help would be appropriated.
...
5
votes
2answers
104 views
Lightweight method to use Amd64 instructions under 32-bit Windows?
For some CPU-bound code using 64-bit variables, it is beneficial to use the Amd64 instruction set rather than x86. How can it be done under 32-bit Windows (e.g. Windows XP SP3)? Of course I assume a ...
3
votes
1answer
96 views
timespec equivalent for windows
I am porting my application to windows from unix and I have run into a wall. In my application I need to find time in microseconds (the whole application heavily depends on it due to it being a high ...
3
votes
1answer
92 views
How do I change the priority of a process?
Can anyone provide a Delphi example of code that changes the priority class of a process?
I need to get the process by name from the Windows XP Task manager and change its priority using delphi ...
3
votes
6answers
153 views
Increase performance in Long Operations
I have a file encryption program. When the program is encrypting files, it doesn't exceed 25% CPU usage, hence it is slow.
How can I make the OS assign to it more CPU load? (Such as WinRAR, when it ...
3
votes
5answers
608 views
CreateProcess such that child process is killed when parent is killed?
Is there a way to call CreateProcess such that killing the parent process automatically kills the child process?
Perhaps using Create Process Flags?
Edit
The solution is to create a job object, ...
3
votes
1answer
181 views
Start Win32 process A which starts process B--get ID / HWND for B
Okay, I spent a bit of time on this site figuring out how to start a "child" process (i.e., new process sets window parent to me) using Win32 calls from C#. It kinda works so long as it doesn't cross ...
3
votes
2answers
260 views
Using WMI, how can I determine whether a remote process is 32-bit or 64-bit?
I have a collection of win32_process objects queried from a remote machine using WMI. How do I determine whether each process is 32-bit or 64-bit?
2
votes
0answers
54 views
Find all threads of a process given process id
I am trying to find if there is a better way to find all thread ids that belong to the current process. It looks like using CreateToolhelp32Snapshot with TH32CS_SNAPTHREAD and iterating over the ...
2
votes
2answers
173 views
Self-installer for Delphi win32 application
Are there any components or 3rd party software to create the self-installer Delphi application?
I want to make some kind of one-click installer which will copy the main exe file and few other files ...
2
votes
1answer
48 views
How to make the feature 'Replace Task Manager' of Process Explorer?
Process Explorer has a nice feature Replace Task Manager
I just wondered how Mark Russinovich implements this.
What trick is used for implementing this?
2
votes
5answers
159 views
Stop a process from showing a window from C#
I'm trying to automate an application that creates a GUI window on startup that has no user interaction, but I can't figure out how to hide the actual window.
I've tried using ProcessStartInfo thus:
...
2
votes
1answer
472 views
Get status of a process started by Invoke-WmiMethod
New to PowerShell, but loving the fact that I can do so much so quickly so far :)
Anyways, I am starting a remote process in a PowerShell script thusly:
$compname = "MY-PC"
$myinstallcmd = ...
2
votes
1answer
1k views
Starting a process remotely in Powershell, getting %ERRORLEVEL% in Windows
A bit of background:
I'm trying to start and stop some performance counters remotely at the start of a test, then stop them at the end of the test. I'm doing this from an automated test framework ...
2
votes
2answers
378 views
Does WaitForSingleObject give up a thread's time slice?
I'm making a win32 program in C.
When you have multiple threads running, and one of the threads is waiting for an event (using WaitForSingleObject() for example), does that thread still get its full ...
2
votes
2answers
165 views
How do you capture Console I/O (not stdio) in Windows?
Why would I want to? Because I'm writing my own cmd.exe replacement! I can CreateProcess and pass in handles to pipes for stdin and stdout and stderr, and I see how I can AllocConsole, FreeConsole, ...
2
votes
2answers
589 views
How to implement progressbar(to show progress) using threading concept in win 32?
I am trying to show a progress bar while my process is going on...in my application there will be a situation where I gotta read files and manipulate them(it will take some time to complete)..want to ...
2
votes
1answer
614 views
how to use WMI to discover a running batch (.bat) filename?
Currently with WMI's Win32_Process,
I seem unable to detect if a batch file is currently running
all it lists is CommandLine of cmd.exe, without telling me which batch file that particular cmd.exe is ...
1
vote
1answer
87 views
Kill process and sub-processes in Ruby on Windows
Currently I'm doing this in one command prompt
require 'win32/process'
p = Process.spawn("C:/ruby193/bin/bundle exec rails s")
puts p
Process.waitpid(p)
and then in another
require ...
1
vote
1answer
85 views
Removing the maximize button from a window created using glfw
How do you remove the maximize button from a window created usingg the glfwopenWindow functionn call ?
Currently, what I'm doing is:
windowHandle = GetForegroundWindow();
long Style = ...
1
vote
3answers
208 views
Why does my windows program die with its frozen (bluish gray) Forms or windows?
My delphi program (NOT for .NET) on windows 7 seems to be running for couple of days straight and then the program sort of freezes with all of its windows painted with blueish grey color as if its ...
1
vote
0answers
42 views
Heap memory size of the DLL loaded via .NET Interop
I have a generic C++ dll which in which I have few structures. I am passing the structure data from the C#.net console based application and and I am trying to deep copy that structure inside my dll ...
1
vote
1answer
149 views
CreateFileMapping is used to create shared memory in win32
CreateFileMapping is used to create shared memory in win32. Do need to synchronized shared memory read/write or it is done automatically ?
1
vote
1answer
117 views
Query doesn't work on c# but work on powershell
Anyone know why my query "select Name, ProcessID, Caption from Win32_Process where ProcessId='" + processIds[index] + "'" return
Column 'Name' does not belong to table Win32_Process
in my program ...
1
vote
1answer
134 views
Creating a process attached to a console but with redirected standard IO handles
I have a command line application that executes other programs according to a user provided script. Some of the executed child processes are cmd.exe running various .cmd scripts. Some of the .cmd ...
1
vote
2answers
157 views
Why the following code is not working?
I have Created a static control using following styles...
picBoxDisp = CreateWindow("STATIC", "image box",
WS_VISIBLE |WS_CHILD | SS_BITMAP |WS_TABSTOP | WS_BORDER,
50, 50, 250, ...
1
vote
1answer
234 views
making an VC++ .exe to DLL .is it possible?
I have an VC++ win 32 application which compiles into an EXE. But now I want to convert it into dll so that I can load that in another application.I tried changing in Visual Studio properties from ...
1
vote
3answers
313 views
c++ CALLBACK function type
I'm trying to create something like MsgProc in Win32. When they declare the MsgProc function they have the CALLBACK type before it. So, all I'm trying to is create my own messsage function that ...
1
vote
1answer
498 views
Alternatives to NtQueryInformationProcess for detecting undead processes?
I'd like to detect when someone terminates a suspended debugged process without informing the debugger. (For example, get to a breakpoint in a console app, and close the app's console window.) The ...
1
vote
2answers
704 views
Getting executable file name from handle in Windows x64
I have a c# application that is compiled as x86 so it runs as a 32bit application on Windows 7 x64.
While the application is running, I need to detect the executable name of the active window.
On ...
1
vote
1answer
308 views
Using 'CreateJobObject': on VC++2005 + Win XP SP2
Are job kernel objects only available on Win2000 ?
I am getting compiler errors for:-
HANDLE hJob = CreateJobObject(NULL, NULL);
error C3861: 'CreateJobObject': identifier not found
Please ...
1
vote
1answer
5k views
Powershell - calling remote WMI objects - RPC error HRESULT: 0x800706BA (RPC server not available)
I've got some troubles with Get-WmiObject and usage of this object.
In case, I'm connecting to remote computer - which is not in AD, but in the internet.
I'm using credentials and I'm able to ...
1
vote
2answers
667 views
How to start script(vbs) with WMI in C# code?
I need to start a Visual Basic script file by using WMI in a c# code.
I don't quite understand what is wrong with this piece of code? Result will be always 8 (Unknown failure). But for example ...
1
vote
5answers
2k views
WMI Win32_Process.Create fails with Insufficient Privs
I'm trying to run a simple cmd utility on a remote Windows server from within a vbscript by invoking the Win32_Process class, like so:
serverIP = "10.0.0.3"
Set oWMI = ...
0
votes
1answer
29 views
How to be sure that the process is set to REAL_TIME priority
I'm developing a console C++ application with Visual Studio on Windows XP that must be at the highest priority possible for the scheduler.
int main()
{
while ( somecondition )
{
...
0
votes
1answer
21 views
read browser “in memory HTML” from EXE
I need to read the "in memory" HTML of a webpage that is displayed in "Internet Explorer 8" from an external process (EXE application).
To put it more simply, lets say you load a page in your browser ...
0
votes
1answer
99 views
CreateRemoteThread, WriteProcessMemory, VirtualAllocEx - why use them?
Recently I have been reading up articles about DLL injection and I understand them fairly well.
However, what I don't understand is why APIs such as CreateRemoteThread, WriteProcessMemory(in being ...
0
votes
1answer
37 views
Prevent application from monitoring file system changes
I have an old application that monitors file system changes for some unknown reason which causes it to significantly slow down(and I'm thinking it's causing some crashes). There should be no need for ...
0
votes
1answer
70 views
Replacement for TRect and TPoint in Delphi Prism
What do you replace TRect and TPoint with from Delphi Win32 code to Delphi Prism code?
0
votes
1answer
56 views
Run process during windows shutdown
I have a Win32 service, that needs to run a .NET executable on service stop (for cleanup reasons). I recently discovered that the cleanup never happens on shutdown, because the process creation gets ...
0
votes
1answer
80 views
How can I find actual path to a loaded DLL with in a windows process (XP /Windows 7)
We create a DLL for other applications to load and use some of the functionality in the application. The DLL has dependency on the the actual path where it is loaded from.
...
0
votes
4answers
78 views
newbie question on win32 app log
I am new in in Visual Studio Win32 (C++) Applications
In java where I work, logging is easy using log4j for instance.
How is the logging done in a Win32 app?
I have seen some code using macros to ...
0
votes
1answer
96 views
win32-process frozen string on CreateProcess?
I tried using Process.create to start a sub process to execute a batch file in a particular directory. This is what I did:
proc_info = Process.create(
:app_name => ENV['SystemRoot'] + ...
0
votes
4answers
178 views
Getting biggest directory size on hard disk in code
I have some troubles in my machine. My harddisk is about 500 GBs, and I am sure my files are no more than 150 GB. But it shows that the free space is only 100 GB. I would know what is the biggest ...
0
votes
2answers
66 views
Unifying 2 space memories
Is there a way to read another process memory as if its memory was a part of my process memory in C++/Windows (without using "ReadProcessMemory")?
What about "CreateRemoteThread"? I want to be able ...
0
votes
3answers
205 views
Successfully close dialog in another process
I have a question. The problem is that I have another process which invoked ShowDialog() method, i need to close this dialog from another process but I need to close it with returning DialogResult.OK.
...
0
votes
2answers
170 views
Is there a way to have a process created by CreateProcess open within another window?
I want to be able to open a GUI application using CreateProcess in a main process and have the GUI display in a window I create from within the main process. Does anyone know how to achive this? ...
0
votes
2answers
409 views
use Win32::Process; My output reports The system cannot find the path specified
I am relearning Perl after about 10 years of non use.
I did a copy and paste of the two scripts below from one of the answers for a similar question on this site. I have checked and double checked ...
0
votes
2answers
64 views
Identify which executable is throwing a runtime error
I have a program that is throwing a run-time error dialog. Is there a way to programmatically detect which executable is the parent of this dialog box from another process?
0
votes
1answer
242 views
How can a program tell if another process is running as a service?
I have a Win32 program which I can direct to monitor another Win32 process.
I want to find a way for the monitoring program to determine if the monitored process is running as a Win32 service.
Not ...