The macOS client (Documentation Index
Fetch the complete documentation index at: https://mintlify.com/freerdp/freerdp/llms.txt
Use this file to discover all available pages before exploring further.
MacFreeRDP) is a native Cocoa application built with AppKit. It wraps the FreeRDP library in an Objective-C frontend that includes a graphical connection dialog, certificate handling, and password entry.
Source layout
| File / Directory | Description |
|---|---|
client/Mac/cli/ | CLI entry point (main.m) and AppDelegate |
client/Mac/MRDPView.m | Core RDP rendering view (NSView subclass) |
client/Mac/mf_client.m | FreeRDP client context implementation |
client/Mac/Keyboard.m | macOS keyboard event translation |
client/Mac/Clipboard.m | Clipboard redirection |
client/Mac/CertificateDialog.m | Certificate acceptance/rejection dialog |
client/Mac/PasswordDialog.m | Credential entry dialog |
client/Mac/MRDPCursor.m | Remote cursor rendering |
Building from source
Install dependencies
Xcode and its command-line tools are required. OpenSSL (or the system-provided LibreSSL) must be present.
Graphical usage
On launch, the application shows a connection manager. Click + to create a new connection and fill in:| Field | Description |
|---|---|
| Server | Hostname or IP address (:port suffix for non-default ports) |
| Username | Login name (optionally prefixed with DOMAIN\\) |
| Password | Stored in the macOS Keychain |
| Domain | Windows domain |
| Resolution | Preset sizes or custom width × height |
| Colour depth | 16 or 32 bpp |
| Full screen | Toggle fullscreen mode |
| Certificate | Trust-on-first-use, ignore, or deny |
Command-line usage
The macOS client also exposes a CLI entry point that accepts the standard FreeRDP option syntax:Supported features
| Feature | Supported |
|---|---|
| Clipboard redirection | Yes |
| Audio output | Yes (CoreAudio backend) |
| Drive / file redirection | Yes |
| Printer redirection | Yes |
| Smartcard redirection | Yes |
| RemoteApp | Yes |
| Multimonitor | Yes |
| Dynamic resolution | Yes |
| GFX pipeline (RDP8) | Yes |
| RemoteFX | Yes |
| Touch input | No |
Keyboard shortcuts
| Shortcut | Action |
|---|---|
Ctrl+Alt+Return | Toggle fullscreen |
Ctrl+Alt+M | Minimise window |
Ctrl+Alt+D | Disconnect and quit |
Certificate handling
When the server presents a certificate that cannot be validated, the macOS client showsCertificateDialog.xib — a native Cocoa sheet — offering three choices:
- Accept (trust-on-first-use, stores fingerprint)
- Accept once (allow for this session only)
- Reject (abort connection)
