Windows 365 Custom USB and device redirection

This image shows the AVDPunk Header

Table of contents

  1. Introduction
  2. Device redirection overview
  3. Step 1. Configure your Windows 365 Cloud PC
  4. Step 2. Configure your local Windows PC
  5. Step 3. Testing
  6. Conclusion
  7. Resources

Introduction

Transitioning to a Cloud PC was never that easy and since Microsoft is using the Remote Desktop Protocol (RDP) users can connect peripherals like cameras, USB drives, and printers from remote devices.

To understand which redirections are supported on which platform, I recommend to check this doc Compare the clients. This articel and the setting only work with a Windows Client (Azure Virtual Desktop, Windows 365 or Windows App).

USB redirections is becoming even more relevant when thinking of graphic intense workloads, especially with Microsoft announcement and preview for Windows 365 GPU support.

This workloads and cloud engineering workspaces often come with special devices like the Spacemouse. In this post we cover the advanced RemoteFX USB settings, which enable you to redirect these devices and an improved user experience.

Note: Of course, this applies to other USB devices too.šŸ˜Š

Device redirection overview

Windows 365 and RDPs allow us to use specific types of devices effectively in a remote session, e.g.:

  • Easy Print, which allows users to print to local printers in remote sessions
  • Drive Redirection, which allows users to access the file system on any local drive in a remote session, including USB drives
  • Smart Card Redirection, which allows users to authenticate to and in a remote session by using smart cards/e-tokens
  • Plug-and-Play Device Redirection, which allows users to access PTP digital cameras, MTP music players, and POS for .NET devices in a remote session, among others
  • Input Redirection, which allows the use of keyboards/mice in remote sessions
  • Audio Redirection, which allows recording and playback of audio in remote sessions
  • Port Redirection, which allows the use of serial and parallel ports in remote sessions

However, there are many devices like the spacemouse, printers webcams, scanners and more which are not covered by this redirections.

Note: RemoteFX USB redirection compliments your high-level redirection and doesnā€™t replace them.

Device redirections compared

RemoteFX USB Redirection RDP High-Level Device Redirection
Does not require drivers on the local client Requires drivers for the device to be installed on the local client
Requires the device driver to be installed on the session host or cloud pc Generally does not require drivers on the session host or cloud pc
Uses one redirection method for many types of devices Uses a specific, unique method for each type of device being redirected
Forwards URBs to and from the device over the RDP connection Exposes high-level device functionality in the remote session by using an optimized protocol for the device type
Enables ONLY ONE session to use a device at a given time; the local client cannot use the device while an RDP session is using it Enables any number of sessions to access the device simultaneously, including the local client

Advanced USB and device redirection configuration on your Cloud PC

Step 1. Configure your Windows 365 Cloud PC

  1. Open run with Windows + R and enter gpedit.msc. Open the ā€œLocal Group Policy Editorā€.

  2. From the navigation tree on the left, select: Computer Configuration > Administrative Templates > Windows Components > Remote Desktop Services > Remote Desktop Session Host > Device and Resource Redirection. Open Do not allow supported Plug and Play device redirection and select Allow plug&play device redirection

2023-12-21-000.png

  1. Choose the Disabled option and click OK in the pop-up window as shown below.disabled do not allow plug and play device redirection

Note: Yes, itā€™s Disabled. Double negative. šŸ«£

  1. Next navigte to Computer Configuration > Administrative Templates > Windows Components > Remote Desktop Services > Remote Desktop Services Session Host > Remote Session Environment > RemoteFX for Windows Server 2008 R2. Open Configure RemoteFX and select Enabled

2023-12-21-004.png

  1. Restart your session host or Cloud PC to apply the changes.

Note: Yes! since Windows 365 is fully integrted into Intune. Simply create a Windows 10 and later, device profile and use the Settings picker to configure the settings.

MEMConfig

Note: Or you can set this via PowerShell.

    $RegistryPath = "HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services"
    Set-ItemProperty -Path $RegistryPath -Name "fEnableVirtualizedGraphics" -Value 1 -Type DWord
    Set-ItemProperty -Path $RegistryPath -Name "fDisablePNPRedir" -Value 0 -Type DWord
    Restart-Computer -Force

Step 2. Configure your local Windows PC

The RemoteFX USB redirection feature is disabled by default so lets enable it.

  1. On your client run gpedit.msc.

  2. Open: Computer Configuration\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Connection Client\RemoteFX USB Redirection.

2023-12-21-001.png

  1. Set Allow RDP redirection of other supported RemoteFX USB devices from this computer to Enabled and select Administrators and Users. Click OK and finish the configuration.

  2. Finally run gpupdate /force to update the machineā€™s policy.

Note: Of course, you can use Intune here as well.

MEMConfig

Note: or you can set this via PowerShell.

    $RegistryPath = "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services\Client"
    Set-ItemProperty -Path $RegistryPath -Name "fUsbRedirectionEnableMode" -Value 2 -Type DWord
    Restart-Computer -Force

Step 3. Testing

Last but least, connect via a Windows App (Azure Virtual Desktop, Windows 365 or Windows App) to your Cloud PC. You will see a new icon in the connection bar to connect your #USBDEVICE. Make sure the device is not in use by any local application, otherwise the redirection will not work.

Devices canā€™t be used on both local devices and the remote session simultaneously. A device can either be mapped locally or into the virtual desktop. And make sure you install the driver on the virtual desktop in case the device is not a ā€œplug and playā€ device.

WindowsApp

Conclusion

Windows 365 GPU support will be another game-changer for engineering and graphic intense workloads in the cloud.

With the RemoteFX Settings you can further increase the user experience by redirecting not only Plug and Play devices to your Cloud PC.

This settings act as a catch-all mechanism that redirects these USB devices! Unlike high-level redirections such as drive redirection, RemoteFX USB redirection happens at the port protocol level, and is similar to how one can redirect serial or parallel ports via RDP.

RemoteFX USB redirection is meant to supplement high-level redirections, not to supplant them. By combining RemoteFX USB redirection with RDP high-level device redirections, you can have the best of both worlds.

Resources