Deploy Windows App (RD Client) via Intune | Guide
Windows App is Microsoft's replacement for the Remote Desktop client, released in 2024. It consolidates connections to Azure Virtual Desktop, Windows 365 Cloud PC, Remote Desktop Services, and direct RDP into a single app. This guide covers deploying Windows App via Intune using the MSIX-based installer, which avoids requiring the Microsoft Store.
Windows App vs Remote Desktop client
Microsoft replaced the old Remote Desktop client (msrdc) with Windows App in 2024. Windows App handles all of the following from one interface:
- Azure Virtual Desktop — cloud-hosted virtual desktops
- Windows 365 Cloud PC — Microsoft's cloud PC service
- Remote Desktop Services — on-premises RDS/RDSH
- Direct RDP — direct connections to Windows machines
Download the installer
Microsoft provides the Windows App installer on the Microsoft Learn documentation site:
https://learn.microsoft.com/en-us/windows-app/get-started-connect-devices-desktops-apps
Download the Windows Installer (.msi) version for enterprise deployment. The MSI installs Windows App system-wide and supports silent deployment.
Wrap with the Content Prep Tool
IntuneWinAppUtil.exe -c "C:\AppSource\WindowsApp" -s "WindowsApp.msi" -o "C:\IntunePackages"
Add the app in Intune
- Upload the .intunewin file
- Name: Windows App
- Publisher: Microsoft Corporation
Install and uninstall commands
Detection rule
Simpler file-based alternative:
Pre-configuring workspace connections
To automatically subscribe users to your Azure Virtual Desktop or Windows 365 workspace on first launch, deploy a registry key via Intune:
# Deploy via Intune PowerShell script or as part of the install wrapper $regPath = "HKLM:\SOFTWARE\Microsoft\RDInfraAgent" New-Item -Path $regPath -Force Set-ItemProperty -Path $regPath -Name "IsServicePrincipal" -Value 0 -Type DWord # Set your AVD/W365 workspace feed URL $feedUrl = "https://rdweb.wvd.microsoft.com/api/arm/feeddiscovery" New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\RdClientRadc\Feeds" -Name $feedUrl -PropertyType String -Value "" -Force
Frequently Asked Questions
Windows App (formerly Remote Desktop client) is available as an MSIX package from the Microsoft Store. Deploy it via the Microsoft Store for Business integration in Intune, or use the Win32 MSI bootstrapper available from the Microsoft download page.
Windows App (released 2024) is the replacement for the Microsoft Remote Desktop client and Remote Desktop Connection. It connects to Azure Virtual Desktop, Windows 365, Remote Desktop Services, and direct RDP connections from a single interface.
Yes. Microsoft provides a bootstrapper EXE and MSI that installs Windows App without requiring the Microsoft Store. Download the installer from the Microsoft documentation for Windows App deployment.
Deploy a workspace URL via a registry key or Group Policy to automatically subscribe users to your Remote Desktop Services or Azure Virtual Desktop environment on first launch.