remote-desktop

Delphi applications and the TSAWARE header flag [closed]

∥☆過路亽.° 提交于 2019-12-19 06:13:18
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . Could this problem also apply to Delphi applications running on Terminal Servers? As the MSDN article "An Office 2007 or Office 2003 application that is running on an RD Session Host server may close unexpectedly in Windows Server 2008 R2" explains This issue occurs because of the Tsappcmd.dll component. This

Execution of QTP scripts on remote machines

爱⌒轻易说出口 提交于 2019-12-19 04:24:20
问题 I am posting this question regarding the execution of QTP scripts on remote machine. When i log in to my remote machine via "mstsc", and execute the script without closing the remote desktop connection, it works fine. But once i close/minimize the remote desktop window, it starts throwing error ( like Object not visible" error. One of the places where it generally throws error is while clicking on the file menu in IE, as shown below :- Browser(" page name -").WinToolbar("ToolbarWindow32")

Remote Desktop Protocol C or Objective-C Library

ⅰ亾dé卋堺 提交于 2019-12-19 03:56:49
问题 Does anyone know of a library for RDP that's written in C or Objective-C that is not GPLed? 回答1: I'm a developer for CoRD, which is a Cocoa RDP client based off rdesktop. There are no loosely-licensed RDP implementations to my knowledge. As far as I know, rdesktop is your best bet (GPL). Very detailed RDP protocol documents are freely available from Microsoft, however it is a somewhat difficult protocol to implement from scratch, due to its lengthy history and myriad of additions. It's much

How to enable Remote Desktop Connection Programmatically?

风格不统一 提交于 2019-12-18 17:31:39
问题 I'm trying to create a small application to setup fresh windows 7 systems. This is essentially so I can make images of the hard drives with all of the settings intact. How would I go about enabling remote desktop from C# ? I find it funny that everyone is flamming me but no one anwsered the question, sysprep cant do all of the required actions that I need in setting up the image. I want to enable RDP not run it. I will just change the registry key and add a firewall setting. I will need this

Improving WPF application speed over remote desktop?

半世苍凉 提交于 2019-12-18 13:35:04
问题 In our scenario, we have a wpf application that is used by users over remote desktop, and we found the user experience is very slow. Any suggestions for improving the user experience in this scenario? One point might be to disable any animation/storyboards, and avoid using gradients in the UI. More thoughts are appreciated. 回答1: For gradients it's not as much of an issue as multiple rendering layers, such as if you have a bunch of nested controls all partially opaque. Take a look through the

Terminal session when minimized\disconnected returns a blank screen upon capturing desktop snapshot

痞子三分冷 提交于 2019-12-18 12:18:28
问题 I am using the below JAVA code to capture the desktop of a remote machine Robot robot = new Robot(); BufferedImage screenShot = robot.createScreenCapture(new Rectangle(Toolkit.getDefaultToolkit().getScreenSize())); ByteArrayOutputStream imageBytes = new ByteArrayOutputStream(); ImageIO.write(screenShot, "PNG", imageBytes); return imageBytes.toByteArray(); However the captured image is blank, when the terminal session to the remote machine is either minimized or disconnected. I appreciate your

Automating remote desktop connection

五迷三道 提交于 2019-12-17 18:43:17
问题 We use many remote desktops in our development environment and there are many servers deployed in multiple environments. It is tedious to remember their IP addresses, usernames, and passwords. I want to write a small utility with buttons on it. When clicked, I want to start those remote desktops, automatically fetching usernames and passwords from some list. I know there is a command line equivalent for MS Remote Desktop: mstsc . This question suggests to do this as follows: cmdkey /generic

user -> guacamole <- vnc server [closed]

末鹿安然 提交于 2019-12-14 04:26:46
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . how would you set up a server running guacamole to listen for a reverse vnc connection? 回答1: I found a better way, not using guacamole, by running a vnc repeater (i used uvnc repeater), which will listen for connection from the vnc servers and viewers, and connect the servers and viewers that use the same id

How to get the IP Address of the Remote Desktop Client?

可紊 提交于 2019-12-14 03:46:29
问题 I'm trying to write a script to log the IP address of the Windows client from which the user initiated Remote Desktop to log in to the Windows Server. How to capture the IP address of the client in the Server? 回答1: So, you ignore proxy... using environment var: CLIENTNAME in domain you can resolve it back to IP without domain controller: using WMI script you can get to Event Log, source: Security, look for category Logon/Logoff where username = environment variable USERNAME 回答2: If you want

Web Based RDP Client

蹲街弑〆低调 提交于 2019-12-13 21:00:29
问题 Can I permit RDP based connections from a website using PHP/JS/etc? I've read that RDP session files can be placed on the web server but would prefer to implement it via code. I am looking for the best way to offer a centralized management of windows machines and allow direct RDP connections. http://msdn.microsoft.com/en-us/library/windows/desktop/aa383019%28v=vs.85%29.aspx This looks like it could potentially work, although it requires IIS as the web-server and requires a role to be