Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
136 views

how to find out what is causing I/O in my application?

Good afternoon, I inherited some C# code from years ago. I have refactored it a bit to be asynchronous. Evaluating the impact of my changes on the performance of the CPU, I used Process Explorer to ...
3
votes
3answers
3k views

Finding current directory during Visual Studio debugging session?

How can I find the current directory for a .NET application running under the Visual Studio debugger? Update 1. To be clear: I don't want to change the code or get information in the program itself - ...
3
votes
2answers
796 views

x64 .NET compilation / Process Explorer oddity

Apologies if any of what I'm about to say makes no sense or overlooks something obvious - my knowledge of CLR internals is spotty. If I understand correctly, then if I just build a solution for ...
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
183 views

Process Explorer: What does the Commit History graph show?

In the Memory graph available in Process Explorer, the top graph shows Commit History. What does this actually indicate at the OS level? To experiment if this is the memory allocated on the heap by a ...
2
votes
2answers
324 views

Task Manager disagrees with Process Explorer?

I'm trying to track down a memory leak in my .NET app. Windows Task Manager reports that the memory usage stays constant, while Process Explorer reports that the memory usage is raising. In Task ...
2
votes
1answer
730 views

Interpreting w3wp.exe thread-infos, does mscorwks.dll!StrongNameErrorInfo+0x7688 has a negative impact

I am trying to interpret the meaning of "mscorwks.dll!StrongNameErrorInfo+0x7688". I guess it means, that the assembly loaded by the mscorworks.dll has no StrongName? If yes, does this have any ...
1
vote
1answer
69 views

Does Process Explorer support API or call from Console Command?

Suppose I've installed multiple version of a software, some of the DLLs are register as COM. For example: .../version1/Application.exe normal.dll comObject.dll -- register ...
1
vote
1answer
426 views

Get the dump using Taskbar, Process Explorer , AdPlus etc

Are those dump the full dump? What's the best dump which can be analyzed later using Windbg?
1
vote
3answers
216 views

Is it possible to use process explorer to kill a recursive loop generated in visual studio?

Sometimes I incorrectly code something and I create a thread that enters a never ending loop. this means I have to shut down the entire visual studio. Is it possible to use process explorer to inspect ...
1
vote
3answers
112 views

Don't see COM dll in the Process Explorer

I am interacting with a custom COM component in my c# project. I am wrapping it with IDisposable. The problem I am facing is that I do not see the dll for CSCCOM in Process Explorer once the program ...
1
vote
4answers
465 views

Finding the command line options a process was launched with

I'm trying to find out how to do this, I'm currently using CreateToolHelp32SnapShot to get a list of the running processes and I've got the FilePaths of the executables which are currently running, ...
0
votes
1answer
172 views

WinDbg dump list private/shared working set. DLL module memory question

Do you guys know if there's any way in WinDbg to list the module memory usage like one would see in Process Explorer's DLL pane? I would like to know WS Private Shareable Shared Total. I have a full ...
0
votes
0answers
145 views

Svchost: How to make it run only one module per instance of svchost.exe? How to get extended process info?

I have an issue with one of my applications. I run the application, everything is okay. When I close this application, I notice that one of the "svchost" processes in the system takes up about 95-100% ...
0
votes
0answers
363 views

Loading Debug Symbols Into Process Explorer

I'm following instructions that mention loading debug symbols in process explorer. But it is not working. The paths I'm using for the "Configure Symbols" dialogue box are: C:\Program ...
0
votes
1answer
442 views

Limited stack trace in Process Explorer

I have a process running under Windows Server 2003 SP2. When I want to check stack trace of one of its threads it is always limited to 9 entries. Those entries are resolved correctly (I have PDBs in ...
0
votes
1answer
538 views

SetEnvironmentVariable within 32bit Process on 64 bit Windows OS

I recently found an interesting issue. When using SetEnvironmentVariable, I can use Process Explorer to get the newly created environment variable. However when the process itself is 32 bit and the OS ...
0
votes
1answer
3k views

Help me understand these memory statistics from Process Explorer

I'm trying to do a very rough measurement of the amount of memory my large financial calculation requires in order to run. Its a very simple command line tool which prices up a large number of ...