Tagged Questions

3
votes
2answers
368 views

What's all this uncommitted, reserved memory in my process?

I'm using VMMap from SysInternals to look at memory allocated by my Win32 C++ process on WinXP, and I see a bunch of allocations where portions of the allocated memory are reserved but not committed. ...
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
3answers
510 views

Current program/file name in focus (Windows)

I am coding an application in C# that needs to know the current program and files a user has in focus. I.e. I want to write functions like: string GetProgramNameCurrentlyInFocus() { ... } string ...
0
votes
1answer
95 views

windows-kernel - Can a thread id ever be the same as a process id?

Hi I've looked around for an answer to this question and I am wondering if anyone with experience in windows internals knows if the kernel ever will assign a process id that is the same as a thread ...
0
votes
0answers
95 views

Automating procdump and running as a service / remotely

I find myself debugging app pools way too often. Is there a way I could automate the process of remotely configuring and generating these procdump notifications? ...
0
votes
1answer
94 views

How to get the count of all file IO system calls in Windows

How do I get the number of all file IO calls produced within the Windows-based OS (to get it working at least on XP) for all processes? Something similar to the Process Monitor, but programmatically ...
0
votes
3answers
201 views

How can a device driver be EXE like Process Monitor

Process Monitor and Explorer are supplied an EXE file. But they include a driver. -Where is it. By Windows Internals, Process Monitor works by extracting a file system filter device driver from ...
0
votes
1answer
33 views

Tag a process with a string

I am trying to reproduce Process Exporer's feature to tag a process running on the current machine with a Comment (Please see the Comment section in the Process properties in Process Explorer). I ...
0
votes
1answer
247 views

Is there any analog of TCPvcon which allows to close TCP connection on remote machine?

I started to use SysInternals suite, and it is great. But I wonder, whether there is any analog of TCPvcon, which allows to logon to remote machine, like psexec does, and then get list of TCP ...
-1
votes
1answer
267 views

Is it possible to add a network drive to %PATH% environment variable

I have a python script calling an exe file. The exe file can be in the same folder as that of the python script or in a network drive. Is it possible to call the exe if it is in a remote ...