Questions tagged [rdp]

Remote Desktop Protocol (RDP) is a proprietary protocol developed by Microsoft, which provides a user with a graphical interface to another computer.

The protocol is an extension of the ITU-T T.128 application sharing protocol. Clients exist for most versions of Microsoft Windows (including Windows Mobile), Linux, Unix, Mac OS X, Android, and other modern operating systems. By default the server listens on TCP port 3389.

Microsoft currently refers to their official RDP server software as Remote Desktop Services, formerly "Terminal Services". Their official client software is currently referred to as Remote Desktop Connection, formerly "Terminal Services Client".

Source: Wikipedia (Remote Desktop Protocol)

1234 questions
0
votes
1 answer

Check CapsLock over RDP connection

I tried two approaches to reading the state of a keyboard's CapsLock key. The first: http://msdn.microsoft.com/en-us/library/system.windows.forms.control.iskeylocked.aspx And the second:…
lowerkey
  • 8,105
  • 17
  • 68
  • 102
0
votes
1 answer

How do you change RDP login/password programatically?

I'm creating a windows service that will let different users connect to the PC over RDP. What I need is to know how can I add, change and remove the login credentials (ie. Login + Pass) on the PC by some sort of WinAPI or by modifying regkeys or…
Valmond
  • 2,897
  • 8
  • 29
  • 49
0
votes
3 answers

Run mstsc.exe with powershell

What I am looking to do seems fairly simple but I cant figure it out. I am looking to run a Powershell script to launch an RDP session, copy a file to the c:\ directory, then run that file from a command line. I would like it to loop, getting the…
user1462832
  • 11
  • 3
  • 6
0
votes
2 answers

Powershell RDP Session and CLI Script

What I am looking to do seems fairly simple but I cant figure it out. I am looking to run a Powershell script to launch an RDP session, copy a file to the c:\ directory, then run that file from a command line. I would like it to loop, getting the…
user1462832
  • 11
  • 3
  • 6
0
votes
1 answer

How to find the Remote Deskop SessionID when using MSTSCLib

I am trying Writing a remote desktop client for use in my testing environment. The goal is to logon to a computer (new virtual machine) for the first time, let the user profile and everything that happens during the first logon happen, and then log…
prshaw
  • 41
  • 5
0
votes
1 answer

mstsc Remote Desktop questions

currently, to improve some inefficiencies on a daily process, I am trying to write a c# Winform app that will combine a mix of user-input with VBscripts that will expedite a previously all user-input process of looking at an excel file and moving…
Kevin Zhou
  • 1,273
  • 4
  • 17
  • 25
0
votes
1 answer

RDP Client for Android

Im searching code for RDP Client(OpenSource Google code for Android). Im Strugling to start, Suggest me, how to start this project? kumar
kumar_android
  • 2,273
  • 1
  • 21
  • 30
0
votes
1 answer

Mozilla plugin for remote desktop protocol

Is there a remote desktop plugin for mozilla browsers that can perform remote desktop functionality from with the browser. Similar to the ActiveX control found in Terminal Services Web. IE similar to this:…
Jeremy Edwards
  • 14,620
  • 17
  • 74
  • 99
0
votes
2 answers

Remote desktop username password authentication

How can I check that a username and password can be logged in remotely on remote machine using remote desktop API and C# code?
Majid Shamkhani
  • 849
  • 2
  • 8
  • 28
0
votes
1 answer

How to programmatically upload file to Windows Server 2003 remote desktop

How to programmatically and over the Internet upload file to a Windows Server 2003 remote desktop from within a local Java application given security credentials (username, password) and Windows Remote Desktop settings (rdp)?
Morten
  • 33
  • 8
0
votes
1 answer

how to overcome performance issues when using virtual android device over RDP

I'm trying to develop for android on an android tablet. So far the best option seems to be using an Amazon ec2 instance over RDP. Eclipse works fine like this. Only problem is that Android Virtual Devices display incredibly slowly over RDP. The…
-1
votes
1 answer

Prevent RDP from going idle (not idle-locking or idle-logout, just show as active)

I need to prevent a remote desktop session from going into idle. The setting to not logout/disconnect user was already made, but still if I let the window, minimize and work on something else, it shows as idle: in cmd: query user /server: MY_SERVER,…
Luci C
  • 197
  • 2
  • 3
  • 14
-1
votes
1 answer

Is it possible to use windows rdp to automatically running scripts

I need to run a script on a large number of windows VMs. psremoting or WMI remoting would be ideal for this, but those connections are blocked by the firewall. However the firewall does enable RDP connections. It would be possible to remote desktop…
Yair Halberstadt
  • 5,733
  • 28
  • 60
-1
votes
1 answer

OpenSSH Server on WIndows 10 drops idle or not

I try to maintain my mother's PC remotely and as part of that sometime back enabled the SSH server so I could tunnel RDP over that. Now it's been working fine for sometime 2 years+. Just recently it drops after not more than 3 minutes sometimes way…
boots
  • 1
  • 2
-1
votes
2 answers

how i can programmatically close rdp connection

I have an application on the server. I can connect to it using rdp, but under some circumstances(request from client, for example) I need the service to close the connection. How can I detect an existing rdp connection and close it if it has?