remote-desktop

Keymap issues with NX from Mac OS X Lion to Ubuntu

折月煮酒 提交于 2019-11-30 08:56:21
I have issues with the keymap of my NX session being garbled. I have a Macbook Air running OS X Lion. I use OpenNX to start a session with an Ubuntu server running FreeNX. The session type is Gnome. My keymap is very off (eg. w gives =, delete gives ",", t gives w). I tried: xmodmap -pke > nxclient.xmodmap on the client and, xmodmap nxclient.xmodmap on the server and I recover many of my keys, but it is still unusable. I tried the Gnome keyboard layouts but none worked. The problem also occurs with an XFCE session. I would appreciate any tips. x2go worked on client and server using Gnome with

Read log file being used by another process

淺唱寂寞╮ 提交于 2019-11-30 08:34:06
Goal I want to press a button on my GUI and read in the seclog.log file (symantec AV log) from a remote machine and display the contents of the log to a rich text box in my application. Things That Work everything but reading the log file Error Message System.IO.IOException was unhandled Message=The process cannot access the file '\\HOSTNAME\C$\Program Files (x86)\Symantec\Symantec Endpoint Protection\seclog.log' because it is being used by another process. Source=mscorlib code //possible seclog paths String seclogPath1 = @"\\\\" + target + "\\C$\\Program Files (x86)\\Symantec\\Symantec

Does an RDP client library under Linux exist?

大兔子大兔子 提交于 2019-11-30 05:05:40
Are there any libraries for connecting as a client via Remote Desktop Protocol (RDP) in Linux? The language used is secondary to the issue of existence. Any mainstream language would do (e.g. C++, Perl, Java, Ruby, PHP, Python), and even less popular ones like OCaml or Scheme. Is there any option available other than taking the rdesktop source and hacking a library out of that? There is a set of cross-platform open source RDP libraries available in FreeRDP project. They are written in C and under Apache Licence 2.0. See http://www.freerdp.com Typing rdp into my Mandriva Software Managment tool

qwinsta /server:somesrv equivalent in Powershell?

倾然丶 夕夏残阳落幕 提交于 2019-11-30 04:17:33
问题 When I run the qwinsta /server:somesrv command in cmd I can get a listing of all the current RDP sessions that are logged into a particular Windows server. SESSIONNAME USERNAME ID STATE TYPE DEVICE console 0 Conn wdcon rdp-tcp 65536 Listen rdpwd rdp-tcp#594 tom1 1 Active rdpwd rdp-tcp#595 bob1 2 Active rdpwd Is it possible to get a list like this on a remote server from Powershell so that the data can be used elsewhere? 回答1: There are multiple alternatives: Use the Terminal Services

Capturing screenshots of a minimized remote desktop

旧城冷巷雨未停 提交于 2019-11-30 03:51:48
问题 I have the following C# code, which I am using to capture a screenshot inside a remote desktop (RDP) session. It works fine when the session is active, but fails with an invalid handle exception if I minimize the session. Is there any way to make this work, or is the screen essentially "gone" when the session is minimized? string filename = @"C:\Snap.png"; Size bitmapSize = new Size( Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height ); using (Bitmap bitmap = new Bitmap

How is TeamViewer so fast?

微笑、不失礼 提交于 2019-11-29 18:33:34
Sorry about the length, it's kinda necessary. Introduction I'm developing a remote desktop software (just for fun) in C# 4.0 for Windows Vista/7. I've gotten through basic obstacles: I have a robust UDP messaging system, relatively clean program design, I've got a mirror driver (the free DFMirage mirror driver from DemoForge) up and running, and I've implemented NAT traversal for all NAT types except Symmetric NATs (present in corporate firewall situations). Regarding screen transfer/sharing, thanks to the mirror driver, I'm automatically notified of changed screen regions and I can simply

Windows MIrror Driver Remote Display Driver VNC server windows 8

我们两清 提交于 2019-11-29 15:39:34
问题 I am working on a driver for a remote desktop server. Something like UltraVNC(in house protocol). First of I see that mirror drivers are not supported on windows 8. Only subset of DDI as a remote display driver. 1) Does that mean I need to implement Remote Display Driver for windows 8? 2)Starting of with mirror driver and only adding the DDI specified here enough to have Remote Display Driver run on windows 8 (Will it install no windows 8)? It says that remote display driver is a subset of

Read log file being used by another process

自古美人都是妖i 提交于 2019-11-29 11:28:02
问题 Goal I want to press a button on my GUI and read in the seclog.log file (symantec AV log) from a remote machine and display the contents of the log to a rich text box in my application. Things That Work everything but reading the log file Error Message System.IO.IOException was unhandled Message=The process cannot access the file '\\HOSTNAME\C$\Program Files (x86)\Symantec\Symantec Endpoint Protection\seclog.log' because it is being used by another process. Source=mscorlib code //possible

Are there problems with rendering WPF over Remote Desktop under Windows XP?

北慕城南 提交于 2019-11-29 10:08:40
I have heard that WPF primitives will not be supported by remote desktop on windows XP. The implication of this is that if you run a WPF application on a vista machine and display it on an XP machine (via remote desktop) the display will be sent as a compressed bitmap. This issue is resolved in Vista-Vista comunication via DirectX 11 (?) but this will not be made available on XP. There is obviously a performance hit here, I would like to understand it before making any inroads into developing applications to WPF. Some information on this topic can be found here: http://blogs.msdn.com/tims

Does an RDP client library under Linux exist?

主宰稳场 提交于 2019-11-29 02:53:28
问题 Are there any libraries for connecting as a client via Remote Desktop Protocol (RDP) in Linux? The language used is secondary to the issue of existence. Any mainstream language would do (e.g. C++, Perl, Java, Ruby, PHP, Python), and even less popular ones like OCaml or Scheme. Is there any option available other than taking the rdesktop source and hacking a library out of that? 回答1: There is a set of cross-platform open source RDP libraries available in FreeRDP project. They are written in C