Grant
Grant

Reputation: 11376

Debugging a remote process

I have a general question about debugging a .NET process that has been built locally but deployed to a remote machine.

If the process was built in DEBUG mode and was deployed WITH pdb's, is there any software or technologies available that allow you to hook in or attach to the process for debugging purposes without installing visual studio? Which would allow you to step through executing code?

Upvotes: 4

Views: 6068

Answers (2)

grzegorz_p
grzegorz_p

Reputation: 483

Please keep in mind that remote debugging of managed code require two-way communication through RPC between debugger and debuggee. You need to grant mutual rights on both machines, open proper ports and make sure any firewall between will not block communication to either side

Upvotes: 3

stuartd
stuartd

Reputation: 73313

See How To Set Up Remote Debugging for starters

Upvotes: 9

Related Questions