Reputation: 306
how to debug a exe without having visual studio IDE
Upvotes: 0
Views: 1094
Reputation: 11716
If you are debugging a managed exe check out mdbg http://blogs.msdn.com/b/jmstall/archive/2005/02/04/367506.aspx
Upvotes: 1
Reputation: 101162
Using another debugger like WinDbg for example. Have a look here and here (or google around) for an introduction.
Upvotes: 5
Reputation: 780
Windows Debugger is built into Windows try that. I used to use a decompiler to work out what was happening sometimes, these are usually commercial products, but free ones are out there =]
Upvotes: 1