Skip to content

Commit dd22dcf

Browse files
authored
Merge pull request #28 from dknappettmsft/avd-multipd
Avd multipd
2 parents 7d185ed + 8e03604 commit dd22dcf

File tree

2 files changed

+27
-5
lines changed

2 files changed

+27
-5
lines changed

articles/virtual-desktop/configure-host-pool-load-balancing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Here's how to configure load balancing with Azure PowerShell. Be sure to change
125125
```
126126

127127
> [!NOTE]
128-
> There are other values for the parameter `LoadBalancerType`, such as `Persistent` and `MultiplePersistent`. These are for personal host pools and not relevant to pooled host pools. To learn more about multi-personal desktop assignment, see [Enable multi-personal desktop assignment](configure-host-pool-personal-desktop-assignment-type.md#enable-multi-personal-desktop-assignment).
128+
> There are other values for the parameter `LoadBalancerType`, such as `Persistent` and `MultiplePersistent`. These are for personal host pools and not relevant to pooled host pools. To learn more about multi-personal desktop assignment, see [Enable multi-personal desktop assignment](configure-host-pool-personal-desktop-assignment-type.md#enable-multiple-personal-desktop-assignment).
129129
130130
### [Azure CLI](#tab/cli)
131131

articles/virtual-desktop/configure-host-pool-personal-desktop-assignment-type.md

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,8 @@ Multiple personal desktop assignment allows you to assign more than one personal
322322
>- You should [Give session hosts in a personal host pool a friendly name](#give-session-hosts-in-a-personal-host-pool-a-friendly-name) so that your users can distinguish between the multiple personal desktops you assigned to them.
323323
>
324324
>- Once a host pool is enabled for multiple personal desktop assignment, it can't be disabled.
325+
>
326+
> Assigning multiple personal desktops to a single user is currently in PREVIEW. See the [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/) for legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
325327
326328
### Enable multiple personal desktop assignment
327329

@@ -343,29 +345,41 @@ To enable multiple personal desktop assignment using the Azure portal:
343345

344346
1. Under **Settings**, select **Properties** to view the host pool properties.
345347

346-
1. Ensure that **Assignment type** is set to **Direct**, then check the box for **Assign multiple desktops to a single user**.
348+
1. Ensure that **Assignment type** is set to **Direct**. If not, select **Direct**, then select **Save**. The assignment type must be **Direct** and saved before you continue. If you try to do both in a single step, you get an error message.
347349

348-
1. Select **Save**.
350+
1. Check the box for **Assign multiple desktops to a single user**, then select **Save**.
349351

350352
#### [Azure PowerShell](#tab/powershell2)
351353

352354
To enable multiple personal desktop assignment using Azure PowerShell. Be sure to change the `<placeholder>` values for your own.
353355

354356
[!INCLUDE [include-cloud-shell-local-powershell](includes/include-cloud-shell-local-powershell.md)]
355357

356-
2. Use the [Update-AzWvdHostPool](/powershell/module/az.desktopvirtualization/update-azwvdhostpool) command to update an existing personal host pool to have multiple persistent load balancer type. This command also sets the personal desktop assignment type of the host pool to **Direct**.
358+
2. Use the [Update-AzWvdHostPool](/powershell/module/az.desktopvirtualization/update-azwvdhostpool) command to make sure the personal desktop assignment type of the host pool is set to **Direct**.
357359

358360
```powershell
359361
$parameters = @{
360362
ResourceGroupName = '<ResourceGroupName>'
361363
Name = '<HostPoolName>'
362-
LoadBalancerType = 'MultiplePersistent'
363364
PersonalDesktopAssignmentType = 'Direct'
364365
}
365366
366367
Update-AzWvdHostPool @parameters
367368
```
368369

370+
371+
3. Use the [Update-AzWvdHostPool](/powershell/module/az.desktopvirtualization/update-azwvdhostpool) command to update an existing personal host pool to have multiple persistent load balancer type.
372+
373+
```powershell
374+
$parameters = @{
375+
ResourceGroupName = '<ResourceGroupName>'
376+
Name = '<HostPoolName>'
377+
LoadBalancerType = 'MultiplePersistent'
378+
}
379+
380+
Update-AzWvdHostPool @parameters
381+
```
382+
369383
---
370384

371385
### Assign multiple personal desktops to a user
@@ -424,3 +438,11 @@ Here's how to assign a user to multiple personal desktops using Azure PowerShell
424438
You can give personal desktops you create *friendly names* to help users distinguish them in their feeds using PowerShell. The Azure portal or Azure CLI doesn't currently have a way to give session host friendly names.
425439

426440
[!INCLUDE [include-session-hosts-friendly-name](includes/include-session-hosts-friendly-name.md)]
441+
442+
## Known issues
443+
444+
We're aware of the following issues with the preview of multiple personal desktop assignment:
445+
446+
- When viewing the list host pools in the Azure portal, the load balancing type for host pools with multiple personal desktop assignment enabled is showing **-** instead of **Multiple Persistent**.
447+
448+
- To enable multiple personal desktop assignment on existing personal host pool with the **Automatic** assignment type, you first need to change the assignment type to **Direct** and save the change, and then e multiple personal desktop assignment. These actions need to be done in separate steps. If you try to do both in a single step, you get an error message.

0 commit comments

Comments
 (0)