remote-desktop

How to Access Remote USB Smartcard during RDP

允我心安 提交于 2019-12-05 06:10:49
问题 [My set up] RDP Client (Win7) ------------------RDP------------------------> Remote Server (Win2k8R2) with SmartCard I've found countless answers that would suggest this is not possible. Alot of answers indicate that RDP was designed this way for security. The smartcards are locked which do not allow the device to be seen when connecting remotely with Remote desktop connection (RDP). However I've found a useful link which appears to work for some but not all. http://lifayk.blogspot.co.uk/2012

C# Determine remote desktop login user's computer name

让人想犯罪 __ 提交于 2019-12-05 00:49:27
问题 I have been researching for a couple of weeks now, on and off, on how to determine the computer name of the user that is logged in via remote desktop. I have an application that users run on a terminal server environment, and I would like to capture and store the name of the computer that they are using to connect to the terminal server with. So far, I have not been able to find code or create my own that can do this, and I think I am just not asking the right questions. Any assistance would

Copy files to a remote server via RDP using a script

早过忘川 提交于 2019-12-04 23:34:21
问题 We have a couple production servers that are configured to only allow access via RDP. There are no acessible shares. The dev team have no say in changing this setup but we want to automate code deployments to these machines. Presently we have to set Remote Desktop to share a local drive with the server, then RDP to the server and manually copy the deployment. Any one know of a way to tunnel over RDP and drop files to a given directory on the remote host from the command line? The instructions

How can i get the Client Computer name

一个人想着一个人 提交于 2019-12-04 20:31:22
I am using C# Framework 4.0 Windows Form. My program is installed on a server TSE. There are 11 light clients that connect to this server. When one of these clients launches my progam, how can I get his PC name ? Panagiotis Kanavos Assuming you are using Terminal Services and Remote Desktop, you can check the CLIENTNAME environment variable to retrieve the client machine's name, although some people report problems with it. You can get the value with Environment.GetEnvironmentVariable , eg var clientName=Environment.GetEnvironmentVariable("CLIENTNAME"); For an API based method, check Preferred

MachineName for remote machine using Remote Desktop

允我心安 提交于 2019-12-04 17:45:29
I'm writing a C# program where it would be useful to see if someone is running the program via remote desktop and if so, the machine name where the remote desktop is running. I can get the former using SystemInformation.TerminalServerSession But is there any way to get the name of the remote machine? I think the Remote Desktop Services API will do what you want... http://msdn.microsoft.com/en-us/library/aa383468(v=VS.85).aspx And the following example may help too - http://community.citrix.com/display/xa/How+to+get+client+IP+address+and+client+hostname+using+Terminal+Services+API You can

Remote desktop TO Windows CE … over USB? [closed]

末鹿安然 提交于 2019-12-04 13:35:40
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . Is there any way to remote-desktop INTO a Windows CE device if all I have to work with on that device is a USB port? I'd like to be able to record the screen. ActiveSync supports ActiveSync Remote Display . And ActiveSync works via USB. See if your WinCE device supports ActiveSync. Otherwise, you could do something with VNC and a USB network adaptor, provided there were drivers for it on CE. This is

Connecting teamviewer in code via browser link

狂风中的少年 提交于 2019-12-04 10:42:07
I have an issue that's driving me mad. I have successfully been able to connect my teamviewer session from a browser uri to my required remote resource. I achieve this by using the following uri command in the browser address bar (in reality, it's a button click in html): teamviewer8://remotecontrol?connectcc=123456789 Although this connects perfectly as required, it presents an issue that I need to address. The problem If the connection isn't yet open, the teamviewer session is initiated and the window pops up in my second monitor as required. All good. However, if the session is already

Generating RDP file on the fly

☆樱花仙子☆ 提交于 2019-12-04 05:51:09
I want to create a web application similar to TS Web Access, where I can create rdp files on the fly for Remote Apps configured on the server. Any idea?? Naraen We had to do this exact thing. private void InvokeRDPSign(String fileName, String certificateThumbPrint) { Process signingProcess = new Process(); signingProcess.StartInfo.FileName = @"rdpsign.exe"; String arguments = String.Format("/sha1 {0} {1}", certificateThumbPrint, fileName); signingProcess.StartInfo.Arguments = arguments; signingProcess.StartInfo.UseShellExecute = false; signingProcess.StartInfo.RedirectStandardOutput = true;

C# application keeps freezing on remote

喜欢而已 提交于 2019-12-04 03:49:31
I am developing a C# application (.Net 3.5, Win Forms) which is run on a server, and is accessed by Users using remote desktop. The application keeps freezing on seemingly random occasions on the remote machine (i.e. all GUI components turn to white, task manager reports the application to be not responding), but not when run locally (I'm not entirely sure about that, but failed to reproduce the freeze on my machine). Has anyone experienced such behavior in his apps that are accessed remotely? What debugging strategy would you suggest? Do I need to consider something special when developing

Prevent failed logon attempt window after failing to supply proper credentials to a remote desktop server using Network Level Authentication

隐身守侯 提交于 2019-12-04 03:24:32
问题 I am using the 'Microsoft Terminal Services Control Type Library' to establish a connection to a remote desktop server. I am looking for a way to prevent or suppress the 'Windows Security' prompt that is displayed when failing to provide a proper username/password combination when connecting to a remote desktop server that uses Network Level Authentication (NLA). The window looks something like this: I have read about and tried every combination of settings that I can find online at this time