You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/virtual-desktop/configure-host-pool-load-balancing.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ Here's how to configure load balancing with Azure PowerShell. Be sure to change
125
125
```
126
126
127
127
> [!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).
Copy file name to clipboardExpand all lines: articles/virtual-desktop/configure-host-pool-personal-desktop-assignment-type.md
+24-4Lines changed: 24 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -343,29 +343,41 @@ To enable multiple personal desktop assignment using the Azure portal:
343
343
344
344
1. Under **Settings**, select **Properties** to view the host pool properties.
345
345
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.
347
347
348
-
1.Select**Save**.
348
+
1.Check the box for **Assign multiple desktops to a single user**, then select**Save**.
349
349
350
350
#### [Azure PowerShell](#tab/powershell2)
351
351
352
352
To enable multiple personal desktop assignment using Azure PowerShell. Be sure to change the `<placeholder>` values for your own.
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**.
357
357
358
358
```powershell
359
359
$parameters = @{
360
360
ResourceGroupName = '<ResourceGroupName>'
361
361
Name = '<HostPoolName>'
362
-
LoadBalancerType = 'MultiplePersistent'
363
362
PersonalDesktopAssignmentType = 'Direct'
364
363
}
365
364
366
365
Update-AzWvdHostPool @parameters
367
366
```
368
367
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
+
369
381
---
370
382
371
383
### 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
424
436
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.
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