The win32-process tag has no wiki summary.
0
votes
1answer
45 views
Determine the caller process of a Win32 function
Is there any way to determine that which process has called a Win32 Function. Actually I need to hook a few functions and in addition I also need to determine that which process has called this ...
0
votes
0answers
48 views
Is HHOOK process-specific in Windows?
We are using SetWindowsHookEx to hook to another process B from our process A. This function returns HHOOK which can be used by UnhookWindowsHookEx to remove the hook. If our process A which installed ...
1
vote
1answer
54 views
Why does my WMI InvokeMethod call return 0 (success) but fail to do anything remotely?
I have a very simple WMI method that connects to a remote server to kick off a batch file.
The return code from this execution is 0, telling me it succeeded. If I change the path to the batch ...
0
votes
0answers
109 views
Remote running msiexec on Win32_Process
The main task of this short part is get some computer name and install on this PC needed software (throught msiexec.exe)
I do this
{
Credential creds = new ...
0
votes
1answer
38 views
List of extensions registered with an application
For an application (for ex: excel.exe), I would like to know what all extensions (for ex: .xlt, .xlsx etc) are registered with application (excel.exe). How to achieve it?
Platform: Windows
...
0
votes
0answers
25 views
Need to start a message.box when Process.Start cant find the .exe
I'm in my 15th hour of programming and this is even more advanced then i could possibly imagine but I'm hanging in there, and I'm stuck on something.
I'm making a program where you launch an external ...
2
votes
1answer
130 views
jinterop Win32_Process Create
I am trying to achieve the following wmic command using j-interop.
wmic /NODE:192.168.0.195 /USER:Test /PASSWORD:password123 process call create "calc.exe"
I have my code written like this in my ...
2
votes
2answers
122 views
Win32 Named mutex not released when process crashes
I have 2 processes (A, B) sharing the same mutex (using WaitForSingleObject / ReleaseMutex calls). Everything works fine, but when process A crashes, process B is humming along happily. When I restart ...
1
vote
0answers
51 views
extracting cpu status and availablility from windows with win32_processor of wmi classes c++
I need to extract some information about cpu with the help of WMI on windows embedded from win32_processor.I do the routine process on msdn that is on;
...
0
votes
1answer
245 views
what is win32_NTLogEvent time generated format
what is the meaning of eventlog time generated value in wmi "20061101185842.000000-000".
when i am using windows event viewer it gives the date and time format as " 2/13/2013 4:05:15 PM " but when i ...
0
votes
0answers
89 views
VS2012 C++ Win32 - Color Messed up
I am just starting to write some C++ code using VS2012 (update 1). I have worked with VS products for years using C#, but with C++ syntax I am experiencing weird highlight color:
Code is compiling ...
1
vote
0answers
166 views
How to alter the “returnValue” property of ManagementBaseObject after running a batch file?
The situation is: I must use ManagementBaseObject to run a batch file and get its return value (like, 0 if the commands were properly executed, 1 if something went wrong). I've tried to use "EXIT" ...
0
votes
2answers
58 views
Native C++ project cannot compile in release mode?
I was building a win32 static library project and on debug mode it compiles without any problem but when I changed the build mode to release I get this link errors. Can anyone suggest what is going ...
1
vote
1answer
85 views
Memory mapped files that are backed up by the System page file
I am having a piece of software that is using MMF that is backed up by the system page file. The application uses MMF in order to cache large images. Write and read operations are happening at a very ...
3
votes
1answer
139 views
are batch files NOT executable unlike shell scripts?
I am using boost.process to run an external process with some given input. user can specify that external process. So most of the time user specifies a shell script or batch script.
I am simply doing ...
0
votes
1answer
94 views
How to Place the image at specific location of the Picture Conrol in VC++
I m trying to overlay an image on a live video.The IDE used is Visual Studio Professional 2010. The code is developed in C++.When I try to overlay image on the live video, I m loading the image using ...
1
vote
1answer
39 views
What is meaning of PE section field bit value IMAGE_SCN_MEM_SHARED?
In a PE/COFF format file (for example, a Windows executable) in the section headers there is a field called Characteristics which has a bit mask value of IMAGE_SCN_MEM_SHARED (0x10000000) which is ...
0
votes
1answer
191 views
C++ Win32- Responding to Key Presses
I'm trying to make win32 app that i simulate that I press the C key on the piano, keyboard No 60, with the following call: midiOutShortMsg (hMidiOut, DWORD (0x090 | 0 | (60 << 8) | (64 << ...
1
vote
1answer
263 views
Chef : Create a process as another user
So I have some code for running a batch file as a specific user. This was my attempt to automate the following syntax
runas /user:thisguy "C:\ThisGuysScript.bat"
so it looks like this in Ruby
...
1
vote
1answer
73 views
isZoomed() functionality is not working in my client code
i wanted to know whether mstsc(RDP) window maximized or not from my client application.
so i'm using :
IsZoomed(handle of mstsc); but i'm always getting zero as return value even if i maximized the ...
2
votes
4answers
241 views
How to ensure only one process accesses shared memory at a time
I am fairly new to Win32 programming. I want to create a shared memory between two processes. I already have created shared memory using the Memory Mapping function.
My struct would look this this:
...
0
votes
2answers
331 views
Win32- Getting ListView Control content from another application
I am trying to access the ListView control (located within an Dialog) in another application, and get the data from within the control. Here is the Win32 code (with appropiate comments) that I am ...
1
vote
2answers
157 views
How to embed in an external program to WPF or .net winform program?
For example, embed in "calc.exe" to wpf window,Thanks.
1
vote
1answer
415 views
Two processes reading/writing to the same file - Win32 using LockFileEx() Function
I am writing a Service which will create a file and write Records in it, other processes(there are four concurrent processes) will read a record and modify some of its values. I am currently using ...
1
vote
1answer
227 views
Change a process description at run time
I have an C win32 application that starts other apps by using the CreateProcess(). Each of the new processes get a unique port number and other stuff. My question is there anyway to add, for example ...
0
votes
3answers
227 views
Generate an .exe file with embedded settings
I have a window application which performs some tasks, One of which is opening some files and we all know .net provides exe file for the application, which can be used as click to start.
I am calling ...
-1
votes
1answer
57 views
How to shut a Win app from another app without reboot?
Hi I want to make a small test window app that can force IE to save its data and shutdown upon a button click and restart with same tabs when another button is clicked??
I am fairly new to Win32 ...
0
votes
0answers
171 views
DbgView not capturing in Windows Server 2008
DbgView is not capturing events generated via OutputDebugString.
DbgView version 4.79, Windows Server 2008 32bit.
'Capture Global win32' has been enabled.
0
votes
1answer
259 views
How to control application volume in WinXP
I would like to programatically control the volume of a particular application in WinXP.
I came to know abt one API waveOutSetVolume(), but it controls the application volume in Win Vista & Above, ...
0
votes
2answers
738 views
Win32, ReadFile from pipe block even after child terminated
I have a simple program (in C) that create two child process, wait on an inherited pipe each, and put the output in a file.
Everything works well, except that after some write/read cycle on the two ...
0
votes
1answer
103 views
MMF (Exclusive /non shared memory mapped file)
Our application runs on WinCE5.0 (written in .net cf)
Because of certain reasons we had to create MMF file for use by our application (the MMF file should be used by our application only).
Now what ...
1
vote
0answers
133 views
Exception in thread While using Win32 services
I am using Following Piece of Code to Regulate Services in Remote machine:
import com.sun.jna.platform.win32.W32Service;
import com.sun.jna.platform.win32.W32ServiceManager;
import ...
0
votes
1answer
97 views
Sharing same stdout between 2 processes in win32, c++
I have 2 processes in my Win32 console application.
1 process - main program
1 process - cli process.
These 2 processes communicate through UDP packets (Sockets).
Cli issues a request for a DUMP on a ...
2
votes
1answer
812 views
GetPrivateProfileInt- reading only the default values
I am trying to read a .init config file in c++ having the content.
[Ipaddress]
Ipaddress=169.254.115.22
[ScanConfiguration]
Scanfrequency=2500
ScanResolution=2500
...
0
votes
2answers
790 views
why does my cmd.exe process doesn't have the “title” property set when launched as a service through perl?
I'm making my Perl soft runing as a service on windows.
For this purpose I'm using the Win32::Daemon module to manipulate SCM (service configuration manager) and start/stop my service.
To launch my ...
0
votes
1answer
386 views
How can i SendMessage to Internet Explorer 9 with WinAPI
environment:
windows 7
visual studio 2010 c++ Win32 API
Internet Explorer 9
OpenGL
project objective:
texturing internet explorer9's screen realtime on a 3d-Plane(GL_QUADS). and mouse picking on ...
1
vote
2answers
267 views
Is the first thread that gets to run inside a Win32 process the “primary thread”? Need to understand the semantics
I create a process using CreateProcess() with the CREATE_SUSPENDED and then go ahead to create a little patch of code inside the remote process to load a DLL and call a function (exported by that ...
1
vote
3answers
693 views
Why is RemoveDirectory function not deleting the top most folder?
refer: codeguru.com/forum/showthread.php?t=239271
When using the function below to delete folders, all folders, subfolders and files are getting deleted except for the top most folder. Say for the ...
1
vote
5answers
316 views
can FindFirstFile() be used to move a file
Can FindFirstFile() be used to move or copy a file from one directory to another? Since it returns a handle, can this handle be used to do it?
3
votes
0answers
1k 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 ...
0
votes
1answer
353 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
115 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 ...
4
votes
1answer
1k 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 ...
2
votes
2answers
281 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 ...
3
votes
1answer
369 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 ...
1
vote
1answer
2k 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 ...
0
votes
1answer
506 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 ...
1
vote
1answer
904 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
319 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
114 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 ...

