An open API service indexing awesome lists of open source software.

https://github.com/Gibbio/RDPGUI

Simple Remote Desktop Connection GUI in PyQt4
https://github.com/Gibbio/RDPGUI

Last synced: 11 months ago
JSON representation

Simple Remote Desktop Connection GUI in PyQt4

Awesome Lists containing this project

README

          

Simple Remote Desktop Connection Client in PyQt4



Packages needed: python-qt4, python-configparser,python-urllib3


edit rdpgui.ini to fit your server environment



config for FreeRDP > 1.0.1 (new command line release: https://github.com/FreeRDP/FreeRDP/wiki/CommandLineInterface):

[DEFAULT]

RDPBinary = xfreerdp

RDPDomain = RPiTC

RDPServer = server1.domain.lan server2.domain.lan server3.domain.lan

RDPDomainFlags = /d:

RDPServerFlags = /v:

RDPUserFlags = /u:

RDPPasswordFlags = /p:

RDPDefaulfFlags = /cert-ignore /f

RDPExtraFlags = /sound:sys:pulse /rfx /fonts



config for FreeRDP < 1.0.1 (old command line release: http://manpages.ubuntu.com/manpages/raring/man1/xfreerdp.1.html):

[DEFAULT]

RDPBinary = xfreerdp

RDPDomain = RPiTC

RDPServer = server1.domain.lan server2.domain.lan server3.domain.lan

RDPDomainFlags = "-d "

RDPServerFlags = ""

RDPUserFlags = "-u "

RDPPasswordFlags = "-p "

RDPDefaulfFlags = "-x l -f"

RDPExtraFlags = "--plugin rdpsnd -z --rfx"



config for RDesktop (command line reference: http://manpages.ubuntu.com/manpages/raring/man1/rdesktop.1.html):

[DEFAULT]

RDPBinary = rdesktop

RDPDomain = RPiTC

RDPServer = server1.domain.lan server2.domain.lan server3.domain.lan

RDPDomainFlags = "-d "

RDPServerFlags = ""

RDPUserFlags = "-u "

RDPPasswordFlags = "-p "

RDPDefaulfFlags = "-x l -f"

RDPExtraFlags = "-r sound:local:alsa -z"