IAMinerva
HomeBlogAbout
m3M365 NewscoMicrosoft CopilotteMicrosoft TeamsshSharePoint & OneDriveinIntune & SecurityexExchange & OutlookpoPower PlatformazAzure & Entra IDtuTutorials & GuidesevEvents & ConferencesseSecuritywiWindows
IAMinerva

Professional blog dedicated to the Microsoft 365 ecosystem.

Quick links

HomeBlogAboutNewsletter

Stay informed

Get the latest Microsoft 365 news delivered straight to your inbox.

© 2026 IAMinerva. All rights reserved.

Built withNext.js&Tailwind
Azure Virtual Desktop : La révolution des bureaux virtuels multiples par utilisateur
BlogAzure & Entra IDAzure Virtual Desktop: The Revolution of Multiple Personal Desktops Per User
Azure & Entra ID#Azure Virtual Desktop#VDI#Cloud Infrastructure

Azure Virtual Desktop: The Revolution of Multiple Personal Desktops Per User

Discover the new Azure Virtual Desktop feature that allows you to assign multiple personal desktops per user within a single host pool.

Houssem MAKHLOUF
March 2, 2026
4 min read

TL;DR par Minerva

généré par IA

Discover the new Azure Virtual Desktop feature that allows you to assign multiple personal desktops per user within a single host pool.

Introduction

The virtual desktop infrastructure (VDI) is undergoing major evolution with Microsoft's announcement concerning Azure Virtual Desktop. The feature allowing multiple personal desktops to be assigned to the same user within a single host pool is now available in public preview. This advancement marks the end of complex architectures requiring multiple host pools to work around previous limitations.

i

Good to know

This new feature allows you to centralize the management of multiple personal environments within a single host pool, significantly reducing administrative complexity.

Image 1

The operational benefits of this evolution

Rationalization of VDI infrastructure

Historically, assigning multiple customized environments to a user required the creation and maintenance of multiple separate host pools. This approach presented significant challenges:

  • Administrative complexity: Multiplication of management points
  • Resource consumption: Infrastructure duplication
  • Operational costs: Increased maintenance and additional licenses

The new feature radically transforms this approach by enabling consolidation within a single host pool, offering:

  • Centralized and simplified administration
  • Optimization of Azure resources
  • Reduction of infrastructure costs

Improvement of end-user experience

Users now benefit from a unified interface that allows them to access multiple customized work environments. Each desktop can be identified by a user-friendly name, facilitating navigation and reducing connection errors.

✦

Tip

Assign descriptive names to each virtual desktop (e.g., "Dev-Python", "Prod-Finance", "Test-Application") to improve user experience.

Technical implementation

Available deployment options

Microsoft offers three implementation methods suited to different administrator profiles:

MethodUse caseAdvantages
Azure PortalOne-off deploymentsIntuitive graphical interface, no scripting skills required
REST APIIntegration into existing workflowsComplete automation, CI/CD integration possible
PowerShellBulk administrationReusable scripts, batch management

Image 2

Quick configuration guide

1

Technical prerequisites

Ensure you have the following:

  • An active Azure subscription
  • Owner or Contributor permissions on the resource group
  • An existing Azure Virtual Desktop host pool or one to create
2

Activation via PowerShell

Use the Az.DesktopVirtualization module to configure multiple desktops:

⚡PowerShell
1# Connect to Azure
2Connect-AzAccount
3
4# Configure the host pool
5$hostPoolName = "MyHostPool"
6$resourceGroupName = "MyResourceGroup"
7
8# Enable the feature
9Update-AzWvdHostPool -Name $hostPoolName -ResourceGroupName $resourceGroupName -PersonalDesktopAssignmentType Multiple
3

Assigning desktops to users

Assign multiple virtual machines to a specific user:

⚡PowerShell
1# Assign multiple VMs
2$userPrincipalName = "user@domain.com"
3$vmNames = @("VM-Dev-01", "VM-Prod-01")
4
5foreach ($vm in $vmNames) {
6 New-AzWvdSessionHost -HostPoolName $hostPoolName -ResourceGroupName $resourceGroupName -Name $vm -AssignedUser $userPrincipalName
7}

Strategic impact for organizations

Financial optimization

Consolidating host pools generates substantial savings:

  • Reduction in licensing costs: Fewer host pools to manage
  • Economies of scale: Shared compute resources
  • Decreased maintenance fees: Centralized administration

Operational flexibility

IT teams can now offer diverse usage scenarios:

  • Separate development and production environments
  • Isolated test spaces for validations
  • Specialized desktops based on projects or clients
!

Attention

Although this feature is in public preview, it is recommended to test it in a non-critical environment before production deployment.

Perspectives and recommendations

This evolution of Azure Virtual Desktop represents a paradigm shift in VDI infrastructure management. Organizations should consider:

  1. Auditing their current infrastructure: Identify redundant host pools
  2. Planning the migration: Establish a consolidation timeline
  3. Training teams: Prepare administrators for new practices
Ă—

Important

Since the feature is in preview, regularly monitor Microsoft updates regarding limitations and developments before the GA (Generally Available) release.

Conclusion

The introduction of multiple personal desktops per user in Azure Virtual Desktop significantly simplifies VDI architecture while offering increased flexibility. This innovation enables organizations to reduce operational complexity while improving user experience. IT teams should seize this opportunity to modernize their infrastructure and optimize costs.

Useful links

  • Official Azure Virtual Desktop documentation
  • Az.DesktopVirtualization PowerShell module
  • Azure Virtual Desktop REST API
  • Azure community forum
  • Azure pricing calculator

Glossary

VDI (Virtual Desktop Infrastructure): Infrastructure that allows desktop environments to be hosted in centralized virtual machines.

Host Pool: Set of Azure virtual machines that provide virtual desktops to users.

Session Host: Individual virtual machine within a host pool that hosts user sessions.

Personal Desktop: Type of virtual desktop dedicated to a single user, as opposed to shared (pooled) desktops.

Public Preview: Testing phase open to all Azure users before general availability of a feature.

REST API: Programming interface allowing interaction with Azure services via HTTP requests.

PowerShell: Command shell and scripting language developed by Microsoft for system administration.

Share:
HM

Houssem MAKHLOUF

Microsoft 365 enthusiast & IT professional.

Previous article

Microsoft 365 Community Conference 2026: The Essential Meeting Place for MVPs and IT Professionals

Mar 1, 2026
Next article

Microsoft 365 Updates - March 2026

Mar 3, 2026

Related articles

Réseau de données avec une loupe et graphiques informatiques.azure

Azure Copilot Observability Agent: Diagnosing Your Applications

Discover Azure Copilot Observability Agent: automatically diagnose application problems and reduce resolution time with Azure AI.

Jun 29, 20267 min
Exécution de scripts PowerShell pour auditer des applications AI et gérer leurs enregistrements.copilot

Audit and Manage AI Applications with PowerShell

Audit unauthorized AI applications in Entra ID with PowerShell and Microsoft Graph to strengthen control and security.

Jun 28, 20264 min
Graphiques abstraits et géométriques avec des couches de couleurs translucides.exchange

Converting Exchange IDs for Microsoft 365 Graph API

Convert Exchange identifiers (storeId, entryId, RestId) for Graph API and targeted eDiscovery. Technical guide with complete PowerShell scripts.

Jun 28, 20267 min