Install app from Microsoft Store to Entra Domain joined AVD

Luke 95 Reputation points
2026-06-11T06:06:48.4566667+00:00

Hi there, we are looking to install some apps from Microsoft Store to our AVD host pool (windows 11, multi-session, Entra Domain joined) by Nerdio. In our case, we need to deploy ClickUp to our host pool, so everyone can use it.

Would be great if someone can share how to do it properly. Thanks.

Azure Virtual Desktop
Azure Virtual Desktop

A Microsoft desktop and app virtualization service that runs on Azure. Previously known as Windows Virtual Desktop.


1 answer

Sort by: Newest
  1. AI answer

    2026-06-11T06:07:00.0966667+00:00

    To make a Microsoft Store app like ClickUp available to all users on an Entra-joined Windows 11 Enterprise multi-session AVD host pool, the app must be provisioned for all user profiles rather than installed per-user.

    High-level approach:

    1. Obtain the app package (MSIX/Appx) for ClickUp from the Microsoft Store (for example via WinGet or Store tooling) and store it centrally.
    2. Provision the package to the AVD session host image so it is installed for all users.
    3. Seal/update the image and update the host pool.

    Key points from the platform behavior:

    • In multi-session environments, apps installed only into a single user profile can disappear or be unavailable for other users. To ensure persistence and availability, apps must be provisioned for all user profiles on the session host.
    • Provisioning is done at the OS image level using DISM or PowerShell (Add-AppxProvisionedPackage) so that each new user profile on that host receives the app.

    Relevant provisioning options (conceptual steps):

    • Use DISM app package servicing commands to add the Store app package to the image so it’s available for all users.
    • Alternatively, use the Add-AppxProvisionedPackage PowerShell cmdlet against the session host image or a reference VM, then capture that as the AVD image.

    Once the app is provisioned in the image and the updated image is applied to the host pool, all users signing into those session hosts will see the app without needing to install it themselves.

    If users should not be able to install arbitrary additional Store apps, configure Group Policy or MDM (for example, disable the Microsoft Store app or require private store only) after the required apps are provisioned.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.