Hi i want to create a c# based remote desktop application
i found this solution which is written in java (link)
so far i created a basic TCP server which supports byte transfer.
Application on windows OS
- Server listen port:3380
- Receive connection -> transfer RDP
Application in linux OS
- Using basic application such as rdesktop to connect
- Python script to transfer files
Does it exist any library or anything that can help me with this kind of project
or can anybody help me convert the java “RemoteServer.zip” code to c#
It’s not that hard to build a remote desktop application in .NET. This can be done using
AxMSTSCLib(ActiveX component) to connect to the remote computer. Microsoft has a “Microsoft RDP client control” ActiveX control that we be used for this purpose.Specify the logic to Connect to the Remote Desktop
Found a couple of references: