3
votes
Tool for analyzing .Net app memory dumps
Hava a look at SOS Assist (http://old.thinktecture.com/SOSAssist/default.html), it provides a GUI around SOS.
…
0
votes
.MSI Not Always Uninstalling Previous Versions
What happens when the uninstall of the previous version fails depends on the sequencing of the RemoveExistingProducts action. I have written a summary about the various options in the past: …
1
vote
creating long-lived server for other applications on windows
Your requirements are a bit contradictory -- if the server has to run indefinitely, regardless of whether there are clients to serve or not, and the process has to be shared among all clients, rega …
1
vote
Find COM DLL path from Com Interop Assembly
Once you've created an object from the respective COM server, its DLL must have been loaded. So you could use P/Invoke and call GetModuleHandle( "mycomserver.dll" ) -- that gives you the path of th …
