Skip to content

Commit d185bf7

Browse files
committed
Fixing build issues
1 parent 8eb138c commit d185bf7

File tree

3 files changed

+25
-28
lines changed

3 files changed

+25
-28
lines changed

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

Lines changed: 23 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -49,30 +49,30 @@ To configure automatic assignment in the Azure portal:
4949

5050
1. Select **Save**.
5151

52-
#### [PowerShell](#tab/powershell)
52+
#### [Azure PowerShell](#tab/powershell)
5353

5454
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.
5555

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

58-
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:
5959

6060
```powershell
61-
Update-AzWvdHostPool -ResourceGroupName $resourceGroupName -Name $hostPoolName -PersonalDesktopAssignmentType Automatic
61+
Update-AzWvdHostPool -ResourceGroupName <ResourceGroupName> -Name <HostPoolName> -PersonalDesktopAssignmentType Automatic
6262
```
6363

6464
#### [Azure CLI](#tab/cli)
6565

66-
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.
6767

6868
[!INCLUDE [include-cloud-shell-local-cli](includes/include-cloud-shell-local-cli.md)]
6969

70-
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:
7171

7272
```azurecli
7373
az desktopvirtualization hostpool update \
74-
--resource-group $resourceGroupName \
75-
--name $hostPoolName \
74+
--resource-group <ResourceGroupName> \
75+
--name <HostPoolName> \
7676
--personal-desktop-assignment-type Automatic
7777
```
7878

@@ -96,38 +96,38 @@ To configure direct assignment in the Azure portal:
9696

9797
1. Select **Save**.
9898

99-
#### [PowerShell](#tab/powershell)
99+
#### [Azure PowerShell](#tab/powershell)
100100

101101
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.
102102

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

105-
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:
106106

107107
```powershell
108-
Update-AzWvdHostPool -ResourceGroupName $resourceGroupName -Name $hostPoolName -PersonalDesktopAssignmentType Direct
108+
Update-AzWvdHostPool -ResourceGroupName <ResourceGroupName> -Name <HostPoolName> -PersonalDesktopAssignmentType Direct
109109
```
110110

111111
#### [Azure CLI](#tab/cli)
112112

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.
114114

115115
[!INCLUDE [include-cloud-shell-local-cli](includes/include-cloud-shell-local-cli.md)]
116116

117-
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:
118118

119119
```azurecli
120120
az desktopvirtualization hostpool update \
121-
--resource-group $resourceGroupName \
122-
--name $hostPoolName \
121+
--resource-group <ResourceGroupName> \
122+
--name <HostPoolName> \
123123
--personal-desktop-assignment-type Direct
124124
```
125125

126126
---
127127

128128
### Directly assign users to session hosts
129129

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.
131131

132132
#### [Azure portal](#tab/azure2)
133133

@@ -157,7 +157,7 @@ To directly assign a user to a session host in the Azure portal:
157157

158158
1. When you're done, select **Select**.
159159

160-
#### [PowerShell](#tab/powershell2)
160+
#### [Azure PowerShell](#tab/powershell2)
161161

162162
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.
163163

@@ -166,15 +166,14 @@ Here's how to configure a host pool to assign a user to a specific session host
166166
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.
167167

168168
```powershell
169-
Update-AzWvdSessionHost -HostPoolName $hostPoolName -Name $sessionHostName -ResourceGroupName $resourceGroupName -AssignedUser $userupn
169+
Update-AzWvdSessionHost -HostPoolName <HostPoolName> -Name <SessionHostName> -ResourceGroupName <ResourceGroupName> -AssignedUser <UserUPN>
170170
```
171171

172-
173172
---
174173

175174
## Unassign a personal desktop
176175

177-
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.
178177

179178
#### [Azure portal](#tab/azure2)
180179

@@ -202,9 +201,9 @@ To unassign a personal desktop in the Azure portal:
202201
203202
1. Select **Unassign** when prompted with the warning.
204203

205-
#### [PowerShell](#tab/powershell2)
204+
#### [Azure PowerShell](#tab/powershell2)
206205

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.
208207

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

@@ -222,12 +221,11 @@ Here's how to configure a host pool to unassign a personal desktop using the [Az
222221
Invoke-AzRestMethod @unassignDesktopParams
223222
```
224223

225-
226224
---
227225

228226
## Reassign a personal desktop
229227

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.
231229

232230
#### [Azure portal](#tab/azure2)
233231

@@ -256,7 +254,7 @@ To reassign a personal desktop in the Azure portal:
256254

257255
1. When you're done, select **Select**.
258256

259-
#### [PowerShell](#tab/powershell2)
257+
#### [Azure PowerShell](#tab/powershell2)
260258

261259
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.
262260

@@ -291,7 +289,6 @@ You can give personal desktops you create *friendly names* to help users disting
291289

292290
[!INCLUDE [include-session-hosts-friendly-name](includes/include-session-hosts-friendly-name.md)]
293291

294-
295292
## Next steps
296293

297294
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
300297
- [Connect with the web client](./users/connect-web.md)
301298
- [Connect with the Android client](./users/connect-android-chrome-os.md)
302299
- [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)

articles/virtual-desktop/configure-single-sign-on.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Disconnecting the session also ensures that when the connection is relaunched af
3939

4040
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.
4141

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.
4343

4444
## Prerequisites
4545

articles/virtual-desktop/customize-rdp-properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Here's how to configure RDP properties using the Azure portal. For a full list o
6464

6565
1. Select **RDP Properties**, then select the **Advanced** tab.
6666

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":::
6868

6969
1. Add extra RDP properties or make changes to the existing RDP properties in a semicolon-separated format, like the default values already shown.
7070

0 commit comments

Comments
 (0)