Search code examples
c#.netdebuggingremote-debugging

Remote debugging - Remote debugger doesn't support this version of Windows error


I have an XP client that is experiencing an issue. My dev box is Vista Home 64. I start up the debugger on the client machine and when i try to run on the dev box, it says 'Unable to debug. Remote debugger doesn't support this version of windows'.

Looks like I'm sol. is there another way to find out how to debug this? The application is throwing a .net runtime error eventid 5000 with a system.security error. Not sure why the try catch isn't getting it. Is there some way to find out what's going on?

Thanks!


Solution

  • Turns out the .net framework was hosed on the client. I couldn't get a stacktrace or nothing. Removed and reinstalled .net framework and everything worked great!

    Thanks for all the help!