On Tue, Nov 24, 2020 at 12:43 PM MARTINEZ, ARIEL <[email protected]> wrote:
> Hello, > > > > I’m trying to test an ad hoc RDP connection but am unsure of the URI > format. I know that the insturctions provide a sample URI: > > > > rdp:// > [email protected]/?security=rdp&ignore-cert=true&disable-audio=true&enable-drive=true&drive-path=/mnt/usb > > > > But I have been trying to connect as a domain user putting fqdn\domainuser > and domainuser@fqdn and the connection fails. Before I troubleshoot > further, is it possible to specify a domain user without a password or at > least leave the user part blank? > > You'll probably need to do one of those things: - You might be able to specify the domain as a connection parameter, so something like: rdp:// [email protected]/?security=rdp&domain=fqdn&ignore-cert=true&disable-audio=true&enable-drive=true&drive-path=/mnt/usb <http://[email protected]/?security=rdp&ignore-cert=true&disable-audio=true&enable-drive=true&drive-path=/mnt/usb> - Escape the "@" or "\" characters in the URI: rdp:// localuser%[email protected]/?security=rdp&ignore-cert=true&disable-audio=true&enable-drive=true&drive-path=/mnt/usb <http://[email protected]/?security=rdp&ignore-cert=true&disable-audio=true&enable-drive=true&drive-path=/mnt/usb> rdp://fqdn%5C [email protected]/?security=rdp&ignore-cert=true&disable-audio=true&enable-drive=true&drive-path=/mnt/usb (First one escapes the "@" sign between "localuser" and "fqdn", second one escapes the back-slash between the "fqdn" and "localuser".) Regarding the password - that will probably be an issue until 1.3.0 is released, when parameter prompting is supported for credentials. -Nick >
