As a developer, I'm trying to setup a development environment on our brand new VMWare ESX server. Things are not working out: somewhere during the SharePoint Product & Technologies Configuration Wizard, the application just disappears, and in the event log I find the following error:
.NET Runtime version 2.0.50727.3082 - Fatal Execution Engine Error (7A0979C6) (80131506)
Now I know all this sounds suspiciously like a ServerFault.com style problem (and a very generic error message, lots of similar hits on google), and of course we are addressing the issue in such a way (installing/uninstalling service packs/hotfixes, different os versions, testing individual elements of the install, different settings for the vm, etc), but out of personal interest I'd like to gain a bit more understanding about the issue then "install hotfix XXYY and hope it goes away". I was wondering: How do I approach this error from a coders perspective?
- Can I somehow make a debugger stop when this issue occurs, or manually point it to the reported address (in what module)?
- Should I try and install use Visual Studio for this, or use lowlevel tools like windbg?
- What are these error codes exactly? The latter looks like a com error. Is the other one an address?
- Can I somehow turn on more detailed error reporting? A faulting .dll would be nice.
You can tell I am not at all experienced in debugging at this level in a .net environment, but I am very much willing to learn. Any pointers are most welcome!
p.s. When I try to run the command-line configuration tool psconfig to do a non-UI configuration, most if not all commands trigger a StackOverflowException. Again, where do I go from there?