Remote debugging from Visual Studio

Copy RemoteDebugger to remote machine from your local Visual Studio directory

(This is path for VS2010)

C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Remote Debugger

Start remote debugging monitor on the server ‘msvsmon.exe’

Go to Tools/Options and select ‘No Authentication (native only)’ and ‘Allow any user to debug’

remote-debugging

In your Visual Studio select ‘Debug/Attach to Process’, specify Transport as ‘Remote (Native only with no authentication)’ and put your server name as Qualifier, click Refresh and you should see the list of processes on the remote machine.

Select the process you want to debug and click ‘Attach’

Comments

  1. Last time after the Visual Studio 2017 update,
    I had to restart my computer and use vcruntime140.dll https://fix4dll.com/vcruntime140_dll Though I might have found those updates really need for correct work and I`ve never used any support before getting related DLL files.
    But now when I found the list of drivers for Windows, I think these problems will no longer arise in the next updates of the VBA.

    ReplyDelete

Post a Comment

Popular posts from this blog

Parse XML to dynamic object in C#

C# Updating GUI from different thread