Cannot use keyboard and mouse from Mac when using RDP through Microsoft Remote Desktop App for Mac

When accessing a server through PAM RDP proxy on Mac using Microsoft Remote Desktop App, we found that keyboard and mouse clicks do not work.
We cannot get past the Senhesaguera RDP proxy screen.

Same access works from a Windows machine.

Anyone else faced this issue?

1 Like

Hi @Ajeeth_Samuel,
you will need to install FreeRDP on BigSur.
Step for installation:

  1. Go to https://brew.sh
  2. Copy the installation command:
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  3. Paste this command into your macOS Terminal
  4. Verify that brew is installed with the command:
    brew help
  5. Enter the command:
    brew install xquartz
  6. Enter the command:
    brew install freerdp
  7. Reboot the machine:
    now reboot.
  8. Run the command:
    xfreerdp /v:demo.senhasegura.io:8130 /relax-order-checks +glyph-cache +bitmap-cache

Thanks. I did not try the one suggested but got it working using rdesktop as below:

  1. Install MacPorts
    The MacPorts Project -- Download & Installation

  2. Install rdesktop
    sudo port install rdesktop

  3. Install Quartz (for X11)
    https://www.xquartz.org

  4. Reboot

  5. Run rdesktop from terminal or write a script
    rdesktop -g 1240x1024 -u PamUser[domain\targetUser@TargetHost] -T WindowTitle -z <pam.server>

2 Likes

Thanks for sharing the solution!