REM http://support.moonpoint.com/os/windows/software/remote-control/rdp/rdp-registry.php\
REM Check if port is being used
netstat -a | find "3389"
REM Enable RDP
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f
REM check firewall status
netsh firewall show state
REM open port on firewall
netsh firewall set portopening protocol = TCP port = 3389 name = "Remote Desktop Protocol" mode = ENABLE
REM on Linux Machine as client
sudo apt install remmina