Tagged Questions
The sysinternals tag has no wiki summary.
5
votes
1answer
167 views
Why is WMI so much slower tha using utilities like PsExec or PsList?
I'm doing various OS management and querying tasks using WMI, but it allways take a long time for first WMI call(10 to 15s).
When I tried few tools from sysinternals I found that they are so much ...
4
votes
4answers
455 views
Alternatives to DebugView?
I'm using SysInternals DebugView for debugging/logging during testing, and it's pretty good. However I was thinking is there more advanced tool.
Features I'm looking for:
Live filters - log ...
4
votes
5answers
109 views
How can I get a list of files loaded by my process?
I'm trying to do a quick and dirty deployment of a project. I thought it would be easy to run my process, use some tool to grab a list of all loaded files (DLLs) and use that list to create a copy ...
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. ...
3
votes
1answer
215 views
Process Explorer - How does the dragabble crosshair work?
There is a feature in sysinternal's process explorer that allows a crosshair to be dragged from the application to a control in any other application you are running and highlights said control. Does ...
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
1answer
1k views
PsExec gets stuck on licence prompt when running non-interactively
I have a Hudson build script which calls the SysInternals PsExec utility. Normally, when PsExec is run for the first time by a given user it pops up a dialog box asking the user to accept the licence. ...
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 ...
2
votes
2answers
5k views
Run PowerShell scripts on remote PC
I have installed PS 1.0 on a remote PC(RPC001). I used Windows Sysinternals
tool PSExec.exe to execute the following process on the remote:
PSExec \\RPC001 -u myID -p myPWD PowerShell ...
1
vote
2answers
306 views
Getting started with dump file analysis
I am working with a legacy VB6/COM application which sometimes causes Windows 7 to crash. I have now generated a .dmp file of one of these crashes using the ProcDump tool from Sysinternals. However, I ...
1
vote
1answer
736 views
SYSTEM_HANDLE_INFORMATION structure
From where does this structure originates? I know that it is declared in famous ntdll.h and is a part of undocumented windows API. But isn't it vary between different versions of windows? Is there a ...
1
vote
2answers
794 views
Convert a Cygwin PID to a Windows PID
I have a process I spawn with a Cygwin shell script, and I am unable to kill it with the kill command. Even with the Cygwin kill with the -f option, I get this message:
kill: couldn't open pid 1234
...
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
2answers
54 views
How do I get SysInternals DebugView to display indents?
I'm using SysInternals DebugView with my .Net application. I've tried using the Indent feature of the .Net Debug class, but DebugView just seems to represent this as a NewLine character.
Does ...
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
0answers
75 views
The exclude filter in SysInternals PortMon doesn't seem to work
In SysInternals PortMon v3.02, using the Filter, the Exclude doesn't seem to exclude items in the log. The same search pattern works in the Highlight field.
0
votes
1answer
166 views
What is an alternative to sysInternals sDelete which's licensing I dislike?
I'm currently looking at using SysInternals sDelete as a secure file-shredder in an application I'm working on, however the Licensing FAQ states explicitly that while this application cannot be ...
0
votes
1answer
50 views
Track system restart
I've written a windows service thats part of software, I deployed the service on both windows server 2003 and 2008, the client contacted me complaining that when they restarted their servers they kept ...
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
969 views
CMD.exe closes immediately after calling (Win7 64)
Has anyone found such behavior when Command Processor (cmd.exe) closes immediately after calling it?
I’ve run McAfee AV and Windows System File Check (sfc.exe) and nothing wrong was detected, I’ve ...
0
votes
0answers
147 views
Size on Disk (du.exe)
Can someone tell me why the Size on Disk and Size values are the same when using du.exe?
Files: 1033768
Directories: 3795
Size: 394,883,016,991 bytes
Size on disk: 394,883,016,991 ...
0
votes
1answer
111 views
What API is used by sysinternals pstools?
especially I'm interested in PsExec (a tool to run remote processes)
0
votes
3answers
199 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 ...