How to start an RDP session using asp.net

I want to start Remote Desktop using my ASP.net website. I tried using the .RDP file and using the Process class to start it using MSTSC.exe, but I cannot open the session. So please let me know how can I do this?

Thanks Laxmilal

+3
source share
1 answer

You can try the approach described by JJ Clements .

This is mainly due to updating the registry on the browser computer to support the URL scheme rdp://. Then, when you click on the type link rdp://fooor when you enter the rdp://foobrowser address bar, it opens MSTSC.exe on the browser machine.

+1

Source: https://habr.com/ru/post/1780237/


All Articles