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
+26-4Lines changed: 26 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -322,6 +322,8 @@ Multiple personal desktop assignment allows you to assign more than one personal
322
322
>- 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.
323
323
>
324
324
>- 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.
325
327
326
328
### Enable multiple personal desktop assignment
327
329
@@ -343,29 +345,41 @@ To enable multiple personal desktop assignment using the Azure portal:
343
345
344
346
1. Under **Settings**, select **Properties** to view the host pool properties.
345
347
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.
347
349
348
-
1.Select**Save**.
350
+
1.Check the box for **Assign multiple desktops to a single user**, then select**Save**.
349
351
350
352
#### [Azure PowerShell](#tab/powershell2)
351
353
352
354
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**.
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**.
357
359
358
360
```powershell
359
361
$parameters = @{
360
362
ResourceGroupName = '<ResourceGroupName>'
361
363
Name = '<HostPoolName>'
362
-
LoadBalancerType = 'MultiplePersistent'
363
364
PersonalDesktopAssignmentType = 'Direct'
364
365
}
365
366
366
367
Update-AzWvdHostPool @parameters
367
368
```
368
369
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
+
369
383
---
370
384
371
385
### 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
424
438
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:
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