Skip to content

Commit aa0d752

Browse files
committed
Added known issues and updated steps
1 parent 0c62336 commit aa0d752

File tree

2 files changed

+25
-5
lines changed

2 files changed

+25
-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: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -343,29 +343,41 @@ To enable multiple personal desktop assignment using the Azure portal:
343343

344344
1. Under **Settings**, select **Properties** to view the host pool properties.
345345

346-
1. Ensure that **Assignment type** is set to **Direct**, then check the box for **Assign multiple desktops to a single user**.
346+
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.
347347

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

350350
#### [Azure PowerShell](#tab/powershell2)
351351

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

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

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**.
356+
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**.
357357

358358
```powershell
359359
$parameters = @{
360360
ResourceGroupName = '<ResourceGroupName>'
361361
Name = '<HostPoolName>'
362-
LoadBalancerType = 'MultiplePersistent'
363362
PersonalDesktopAssignmentType = 'Direct'
364363
}
365364
366365
Update-AzWvdHostPool @parameters
367366
```
368367

368+
369+
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.
370+
371+
```powershell
372+
$parameters = @{
373+
ResourceGroupName = '<ResourceGroupName>'
374+
Name = '<HostPoolName>'
375+
LoadBalancerType = 'MultiplePersistent'
376+
}
377+
378+
Update-AzWvdHostPool @parameters
379+
```
380+
369381
---
370382

371383
### Assign multiple personal desktops to a user
@@ -424,3 +436,11 @@ Here's how to assign a user to multiple personal desktops using Azure PowerShell
424436
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.
425437

426438
[!INCLUDE [include-session-hosts-friendly-name](includes/include-session-hosts-friendly-name.md)]
439+
440+
## Known issues
441+
442+
We're aware of the following issues with the preview of multiple personal desktop assignment:
443+
444+
- 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**.
445+
446+
- 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)