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-personal-desktop-assignment-type.md
+23-26Lines changed: 23 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,30 +49,30 @@ To configure automatic assignment in the Azure portal:
49
49
50
50
1. Select **Save**.
51
51
52
-
#### [PowerShell](#tab/powershell)
52
+
#### [Azure PowerShell](#tab/powershell)
53
53
54
54
Here's how to configure a host pool to automatically assign users to VMs using the [Az.DesktopVirtualization](/powershell/module/az.desktopvirtualization) PowerShell module. Be sure to change the `<placeholder>` values for your own.
2. Run the `Update-AzWvdHostPool`command in the following example to configure a host pool to automatically assign users to VMs. For more information about the parameters,see the [az-desktopvirtualization-hostpool Azure CLI reference](/cli/azure/desktopvirtualization/hostpool).
58
+
2. Run the command in the following example to configure a host pool to automatically assign users to session hosts:
Here's how to configure a host pool to automatically assign users to VMs using the [az-desktopvirtualization-hostpool-update](/cli/azure/desktopvirtualization/hostpool#az-desktopvirtualization-hostpool-update) command.
66
+
Here's how to configure a host pool to automatically assign users to VMs using the [desktopvirtualization](/cli/azure/desktopvirtualization) command. Be sure to change the `<placeholder>` values for your own.
2. Run the command in the following example to configure a host pool to automatically assign users to VMs. For more information about the parameters, see the [az-desktopvirtualization-hostpool Azure CLI reference](/cli/azure/desktopvirtualization/hostpool).
70
+
2. Run the command in the following example to configure a host pool to automatically assign users to session hosts:
71
71
72
72
```azurecli
73
73
az desktopvirtualization hostpool update \
74
-
--resource-group $resourceGroupName \
75
-
--name $hostPoolName \
74
+
--resource-group <ResourceGroupName> \
75
+
--name <HostPoolName> \
76
76
--personal-desktop-assignment-type Automatic
77
77
```
78
78
@@ -96,38 +96,38 @@ To configure direct assignment in the Azure portal:
96
96
97
97
1. Select **Save**.
98
98
99
-
#### [PowerShell](#tab/powershell)
99
+
#### [Azure PowerShell](#tab/powershell)
100
100
101
101
Here's how to configure a host pool to require direct assignment of users to session hosts using the [Az.DesktopVirtualization](/powershell/module/az.desktopvirtualization) PowerShell module. Be sure to change the `<placeholder>` values for your own.
2. Run the `Update-AzWvdHostPool`command in the following example to configure a host pool to require direct assignment. For more information about the parameters, see the [Update-AzWvdHostPool](/powershell/module/az.desktopvirtualization/update-azwvdhostpool) reference.
105
+
2. Run the command in the following example to configure a host pool to require direct assignment:
106
106
107
107
```powershell
108
-
Update-AzWvdHostPool -ResourceGroupName $resourceGroupName -Name $hostPoolName -PersonalDesktopAssignmentType Direct
108
+
Update-AzWvdHostPool -ResourceGroupName <ResourceGroupName> -Name <HostPoolName> -PersonalDesktopAssignmentType Direct
109
109
```
110
110
111
111
#### [Azure CLI](#tab/cli)
112
112
113
-
Here's how to configure a host pool to automatically assign users to VMs using the [az-desktopvirtualization-hostpool-update](/cli/azure/desktopvirtualization/hostpool#az-desktopvirtualization-hostpool-update) command.
113
+
Here's how to configure a host pool to automatically assign users to VMs using the [desktopvirtualization](/cli/azure/desktopvirtualization) command. Be sure to change the `<placeholder>` values for your own.
2. Run the command in the following example to configure a host pool to automatically assign users to VMs. For more information about the parameters, see the [az-desktopvirtualization-hostpool Azure CLI reference](/cli/azure/desktopvirtualization/hostpool).
117
+
2. Run the command in the following example to configure a host pool to automatically assign users to session hosts:
118
118
119
119
```azurecli
120
120
az desktopvirtualization hostpool update \
121
-
--resource-group $resourceGroupName \
122
-
--name $hostPoolName \
121
+
--resource-group <ResourceGroupName> \
122
+
--name <HostPoolName> \
123
123
--personal-desktop-assignment-type Direct
124
124
```
125
125
126
126
---
127
127
128
128
### Directly assign users to session hosts
129
129
130
-
Here's how to directly assign users to session hosts using the Azure portal or PowerShell. You can't assign users to session hosts using Azure CLI.
130
+
Here's how to directly assign users to session hosts using the Azure portal or Azure PowerShell. You can't assign users to session hosts using Azure CLI.
131
131
132
132
#### [Azure portal](#tab/azure2)
133
133
@@ -157,7 +157,7 @@ To directly assign a user to a session host in the Azure portal:
157
157
158
158
1. When you're done, select **Select**.
159
159
160
-
#### [PowerShell](#tab/powershell2)
160
+
#### [Azure PowerShell](#tab/powershell2)
161
161
162
162
Here's how to configure a host pool to assign a user to a specific session host using the [Az.DesktopVirtualization](/powershell/module/az.desktopvirtualization) PowerShell module. Be sure to change the `<placeholder>` values for your own.
163
163
@@ -166,15 +166,14 @@ Here's how to configure a host pool to assign a user to a specific session host
166
166
2. Run the `Update-AzWvdHostPool` command in the following example to assign a user to a session host. For more information about the parameters, see the [Update-AzWvdHostPool](/powershell/module/az.desktopvirtualization/update-azwvdhostpool) reference.
Here's how to unassign a personal desktop using the Azure portal or PowerShell. You can't unassign a personal desktop using Azure CLI.
176
+
Here's how to unassign a personal desktop using the Azure portal or Azure PowerShell. You can't unassign a personal desktop using Azure CLI.
178
177
179
178
#### [Azure portal](#tab/azure2)
180
179
@@ -202,9 +201,9 @@ To unassign a personal desktop in the Azure portal:
202
201
203
202
1. Select **Unassign** when prompted with the warning.
204
203
205
-
#### [PowerShell](#tab/powershell2)
204
+
#### [Azure PowerShell](#tab/powershell2)
206
205
207
-
Here's how to configure a host pool to unassign a personal desktop using the [Az.DesktopVirtualization](/powershell/module/az.desktopvirtualization) PowerShell module. Be sure to change the `<placeholder>` values for your own.
206
+
Here's how to configure a host pool to unassign a personal desktop. Be sure to change the `<placeholder>` values for your own.
@@ -222,12 +221,11 @@ Here's how to configure a host pool to unassign a personal desktop using the [Az
222
221
Invoke-AzRestMethod @unassignDesktopParams
223
222
```
224
223
225
-
226
224
---
227
225
228
226
## Reassign a personal desktop
229
227
230
-
Here's how to reassign a personal desktop using the Azure portal or PowerShell. You can't reassign a personal desktop using Azure CLI.
228
+
Here's how to reassign a personal desktop using the Azure portal or Azure PowerShell. You can't reassign a personal desktop using Azure CLI.
231
229
232
230
#### [Azure portal](#tab/azure2)
233
231
@@ -256,7 +254,7 @@ To reassign a personal desktop in the Azure portal:
256
254
257
255
1. When you're done, select **Select**.
258
256
259
-
#### [PowerShell](#tab/powershell2)
257
+
#### [Azure PowerShell](#tab/powershell2)
260
258
261
259
Here's how to reassign a personal desktop using the [Az.DesktopVirtualization](/powershell/module/az.desktopvirtualization) PowerShell module. Be sure to change the `<placeholder>` values for your own.
262
260
@@ -291,7 +289,6 @@ You can give personal desktops you create *friendly names* to help users disting
Now that you've configured the personal desktop assignment type and given your session host a friendly name, you can sign in to an Azure Virtual Desktop client to test it as part of a user session. These articles will show you how to connect to a session using the client of your choice:
@@ -300,4 +297,4 @@ Now that you've configured the personal desktop assignment type and given your s
300
297
-[Connect with the web client](./users/connect-web.md)
301
298
-[Connect with the Android client](./users/connect-android-chrome-os.md)
302
299
-[Connect with the iOS client](./users/connect-ios-ipados.md)
303
-
-[Connect with the macOS client](./users/connect-macos.md)
300
+
-[Connect with the macOS client](./users/connect-macos.md)
Copy file name to clipboardExpand all lines: articles/virtual-desktop/configure-single-sign-on.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
@@ -39,7 +39,7 @@ Disconnecting the session also ensures that when the connection is relaunched af
39
39
40
40
In environments with an Active Directory Domain Services (AD DS) and hybrid user accounts, the default *Password Replication Policy* on read-only domain controllers denies password replication for members of *Domain Admins* and *Administrators* security groups. This policy prevents these administrator accounts from signing in to Microsoft Entra hybrid joined hosts and might keep prompting them to enter their credentials. It also prevents administrator accounts from accessing on-premises resources that use Kerberos authentication from Microsoft Entra joined hosts. We don't recommend connecting to a remote session using an account that is a domain administrator.
41
41
42
-
If you need to make changes to a session host as an administrator, sign in to the session host using a non-administrator account, then use the *Run as administrator* option or [runas](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc771525(v=ws.11)) from a command prompt to change to an administrator.
42
+
If you need to make changes to a session host as an administrator, sign in to the session host using a non-administrator account, then use the *Run as administrator* option or the [runas](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc771525(v=ws.11)) tool from a command prompt to change to an administrator.
Copy file name to clipboardExpand all lines: articles/virtual-desktop/customize-rdp-properties.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
@@ -64,7 +64,7 @@ Here's how to configure RDP properties using the Azure portal. For a full list o
64
64
65
65
1. Select **RDP Properties**, then select the **Advanced** tab.
66
66
67
-
:::image type="content" source="media/customize-rdp-properties/rdp-properties-advanced.png" alt-text="A screenshot showing the advanced tab of RDP properties in the Azure portal.":::
67
+
:::image type="content" source="media/customize-rdp-properties/rdp-properties-advanced.png" alt-text="A screenshot showing the advanced tab of RDP properties in the Azure portal." lightbox="media/customize-rdp-properties/rdp-properties-advanced.png":::
68
68
69
69
1. Add extra RDP properties or make changes to the existing RDP properties in a semicolon-separated format, like the default values already shown.
0 commit comments