I've debugged process on remote computer across domain as another user several times.
First, you need to learn how to debug remote process in the same domain.
@KyleMit's answers completely helped me do that.
But, for across domain debugging also you need to edit C:\Windows\System32\drivers\etc\hosts
file on local computer.
Just add remote computer's ip address like this:
172.172.172.172 SRV-TEST-ADRESS
Where:
172.172.172.172
- ip address of your remote server
SRV-TEST-ADRESS
- Server's name from Visual Studio Remote Debugger
Monitor on remote computer
You can know your server's ip address by ipconfig
in cmd
If you need more details explanation about across domain debugging, check this link.
runas
as the other user? – Bab