Skip to content

Commit 62d7a0f

Browse files
committed
Changing app groups to application groups and remote app groups to RemoteApp application groups.
1 parent d97aa82 commit 62d7a0f

File tree

52 files changed

+179
-179
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+179
-179
lines changed

articles/virtual-desktop/TOC.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
items:
4646
- name: 1. Create a host pool
4747
href: create-host-pools-azure-marketplace.md
48-
- name: 2. Manage app groups
48+
- name: 2. Manage application groups
4949
href: manage-app-groups.md
5050
- name: 3. Create a host pool to validate service updates
5151
href: create-validation-host-pool.md
@@ -221,7 +221,7 @@
221221
href: configure-vm-gpu.md
222222
- name: Expand an existing host pool
223223
href: expand-existing-host-pool.md
224-
- name: Manage app groups using PowerShell or the Azure CLI
224+
- name: Manage application groups using PowerShell or the Azure CLI
225225
href: manage-app-groups-powershell.md
226226
- name: Delete a host pool
227227
href: delete-host-pool.md

articles/virtual-desktop/app-attach-azure-portal.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -93,22 +93,22 @@ To publish the apps:
9393
2. Select the application group you want to publish the apps to.
9494

9595
>[!NOTE]
96-
>MSIX applications can be delivered with MSIX app attach to both remote app and desktop app groups. When a MSIX package is assigned to a remote app group and desktop app group from the same host pool the desktop app group will be displayed in the feed.
96+
>MSIX applications can be delivered with MSIX app attach to both remote app and desktop application groups. When a MSIX package is assigned to a RemoteApp application group and desktop application group from the same host pool the desktop application group will be displayed in the feed.
9797
98-
3. Once you're in the app group, select the **Applications** tab. The **Applications** grid will display all existing apps within the app group.
98+
3. Once you're in the application group, select the **Applications** tab. The **Applications** grid will display all existing apps within the application group.
9999

100100
4. Select **+ Add** to open the **Add application** tab.
101101

102102
> [!div class="mx-imgBorder"]
103103
> ![A screenshot of the user selecting + Add to open the add application tab](media/select-add.png)
104104
105105
5. For **Application source**, choose the source for your application.
106-
- If you're using a Desktop app group, choose **MSIX package**.
106+
- If you're using a Desktop application group, choose **MSIX package**.
107107

108108
> [!div class="mx-imgBorder"]
109109
> ![A screenshot of a customer selecting MSIX package from the application source drop-down menu. MSIX package is highlighted in red.](media/select-source.png)
110110
111-
- If you're using a remote app group, choose one of the following options:
111+
- If you're using a RemoteApp application group, choose one of the following options:
112112

113113
- Start menu
114114
- App path
@@ -122,16 +122,16 @@ To publish the apps:
122122

123123
- For **Description**, enter a short description of the app package.
124124

125-
- If you're using a remote app group, you can also configure these options:
125+
- If you're using a RemoteApp application group, you can also configure these options:
126126

127127
- **Icon path**
128128
- **Icon index**
129129

130130
6. When you're done, select **Save**.
131131

132-
## Assign a user to an app group
132+
## Assign a user to an application group
133133

134-
After assigning MSIX apps to an app group, you'll need to grant users access to them. You can assign access by adding users or user groups to an app group with published MSIX applications. Follow the instructions in [Manage app groups with the Azure portal](manage-app-groups.md) to assign your users to an app group.
134+
After assigning MSIX apps to an application group, you'll need to grant users access to them. You can assign access by adding users or user groups to an application group with published MSIX applications. Follow the instructions in [Manage application groups with the Azure portal](manage-app-groups.md) to assign your users to an application group.
135135

136136
## Change MSIX package state
137137

articles/virtual-desktop/app-attach-powershell.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Here's what you need to configure MSIX app attach:
1818

1919
- A functioning Azure Virtual Desktop deployment. To learn how to deploy Azure Virtual Desktop (classic), see [Create a tenant in Azure Virtual Desktop](./virtual-desktop-fall-2019/tenant-setup-azure-active-directory.md). To learn how to deploy Azure Virtual Desktop with Azure Resource Manager integration, see [Create a host pool with the Azure portal](./create-host-pools-azure-marketplace.md).
2020
- A Azure Virtual Desktop host pool with at least one active session host.
21-
- A Desktop remote app group.
21+
- A Desktop RemoteApp application group.
2222
- The MSIX packaging tool.
2323
- An MSIX-packaged application expanded into an MSIX image that's uploaded into a file share.
2424
- A file share in your Azure Virtual Desktop deployment where the MSIX package will be stored.
@@ -190,42 +190,42 @@ To remove the package, run this cmdlet:
190190
Remove-AzWvdMsixPackage -FullName $obj.PackageFullName -HostPoolName $hp -ResourceGroupName $rg
191191
```
192192

193-
## Publish MSIX apps to an app group
193+
## Publish MSIX apps to an application group
194194

195-
You can only follow the instructions in this section if you've finished following the instructions in the previous sections. If you have a host pool with an active session host, at least one Desktop app group, and have added an MSIX package to the host pool, you're ready to go.
195+
You can only follow the instructions in this section if you've finished following the instructions in the previous sections. If you have a host pool with an active session host, at least one Desktop application group, and have added an MSIX package to the host pool, you're ready to go.
196196

197-
To publish an app from the MSIX package to an app group, you'll need to find its name, then use that name in the publishing cmdlet.
197+
To publish an app from the MSIX package to an application group, you'll need to find its name, then use that name in the publishing cmdlet.
198198

199199
To publish an app:
200200

201-
Run this cmdlet to list all available app groups:
201+
Run this cmdlet to list all available application groups:
202202

203203
```powershell
204204
Get-AzWvdApplicationGroup -ResourceGroupName $rg -SubscriptionId $subId
205205
```
206206

207-
When you've found the name of the app group you want to publish apps to, use its name in this cmdlet:
207+
When you've found the name of the application group you want to publish apps to, use its name in this cmdlet:
208208

209209
```powershell
210210
$grName = "<AppGroupName>"
211211
```
212212

213213
Finally, you'll need to publish the app.
214214

215-
- To publish MSIX application to a desktop app group, run this cmdlet:
215+
- To publish MSIX application to a desktop application group, run this cmdlet:
216216

217217
```powershell
218218
New-AzWvdApplication -ResourceGroupName $rg -SubscriptionId $subId -Name PowerBi -ApplicationType MsixApplication -ApplicationGroupName $grName -MsixPackageFamilyName $obj.PackageFamilyName -CommandLineSetting 0
219219
```
220220

221-
- To publish the app to a remote app group, run this cmdlet instead:
221+
- To publish the app to a RemoteApp application group, run this cmdlet instead:
222222

223223
```powershell
224224
New-AzWvdApplication -ResourceGroupName $rg -SubscriptionId $subId -Name PowerBi -ApplicationType MsixApplication -ApplicationGroupName $grName -MsixPackageFamilyName $obj.PackageFamilyName -CommandLineSetting 0 -MsixPackageApplicationId $obj.PackageApplication.AppId
225225
```
226226

227227
>[!NOTE]
228-
>If a user is assigned to both a remote app group and a desktop app group in the same host pool, when the user connects to their remote desktop, they will see MSIX apps from both groups.
228+
>If a user is assigned to both a RemoteApp application group and a desktop application group in the same host pool, when the user connects to their remote desktop, they will see MSIX apps from both groups.
229229
230230
## Next steps
231231

articles/virtual-desktop/automatic-migration.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Before you use the migration module, make sure you have the following things rea
3333
- PowerShell or PowerShell ISE to run the scripts you'll see in this article. The Microsoft.RdInfra.RDPowershell module doesn't work in PowerShell Core.
3434

3535
>[!IMPORTANT]
36-
>Migration only creates service objects in the US geography. If you try to migrate your service objects to another geography, it won't work. Also, if you have more than 500 app groups in your Azure Virtual Desktop (classic) deployment, you won't be able to migrate. You'll only be able to migrate if you rebuild your environment to reduce the number of app groups within your Azure Active Directory (Azure AD) tenant.
36+
>Migration only creates service objects in the US geography. If you try to migrate your service objects to another geography, it won't work. Also, if you have more than 500 application groups in your Azure Virtual Desktop (classic) deployment, you won't be able to migrate. You'll only be able to migrate if you rebuild your environment to reduce the number of application groups within your Azure Active Directory (Azure AD) tenant.
3737
3838
## Prepare your PowerShell environment
3939

@@ -163,8 +163,8 @@ To migrate your Azure virtual Desktop (classic) resources to Azure Resource Mana
163163

164164
You'll also need to specify a user assignment mode for the existing user assignments:
165165

166-
- Use **Copy** to copy all user assignments from your old app groups to Azure Resource Manager application groups. Users will be able to see feeds for both versions of their clients.
167-
- Use **None** if you don't want to change the user assignments. Later, you can assign users or user groups to app groups with the Azure portal, PowerShell, or API. Users will only be able to see feeds using the Azure Virtual Desktop (classic) clients.
166+
- Use **Copy** to copy all user assignments from your old application groups to Azure Resource Manager application groups. Users will be able to see feeds for both versions of their clients.
167+
- Use **None** if you don't want to change the user assignments. Later, you can assign users or user groups to application groups with the Azure portal, PowerShell, or API. Users will only be able to see feeds using the Azure Virtual Desktop (classic) clients.
168168

169169
You can only copy 2,000 user assignments per subscription, so your limit will depend on how many assignments are already in your subscription. The module calculates the limit based on how many assignments you already have. If you don't have enough assignments to copy, you'll get an error message that says "Insufficient role assignment quota to copy user assignments. Rerun command without the -CopyUserAssignments switch to migrate."
170170

@@ -178,20 +178,20 @@ To migrate your Azure virtual Desktop (classic) resources to Azure Resource Mana
178178

179179
- A resource group called "Tenantname," which contains your workspace.
180180

181-
- A resource group called "Tenantname_originalHostPoolName," which contains the host pool and desktop app groups.
181+
- A resource group called "Tenantname_originalHostPoolName," which contains the host pool and desktop application groups.
182182

183-
- Any users you published to the newly created app groups.
183+
- Any users you published to the newly created application groups.
184184

185185
- Virtual machines will be available in both existing and new host pools to avoid user downtime during the migration process. This lets users connect to the same user session.
186186

187187
Since these new Azure service objects are Azure Resource Manager objects, the module can't set Role-based Access Control (RBAC) permissions or diagnostic settings on them. Therefore, you'll need to update the RBAC permissions and settings for these objects manually.
188188

189-
Once the module validates the initial user connections, you can also publish the app group to more users or user groups, if you'd like.
189+
Once the module validates the initial user connections, you can also publish the application group to more users or user groups, if you'd like.
190190

191191
>[!NOTE]
192-
>After migration, if you move app groups to a different resource group after assigning permissions to users, it will remove all RBAC roles. You'll need to reassign users RBAC permissions all over again.
192+
>After migration, if you move application groups to a different resource group after assigning permissions to users, it will remove all RBAC roles. You'll need to reassign users RBAC permissions all over again.
193193
194-
4. If you want to delete all Azure Virtual Desktop (classic) service objects, run **Complete-RdsHostPoolMigration** to finish the migration process. This cmdlet will delete all Azure Virtual Desktop (classic) objects, leaving only the new Azure objects. Users will only be able to see the feed for the newly created app groups on their clients. Once this command is done, you can safely delete the Azure Virtual Desktop (classic) tenant to finish the process.
194+
4. If you want to delete all Azure Virtual Desktop (classic) service objects, run **Complete-RdsHostPoolMigration** to finish the migration process. This cmdlet will delete all Azure Virtual Desktop (classic) objects, leaving only the new Azure objects. Users will only be able to see the feed for the newly created application groups on their clients. Once this command is done, you can safely delete the Azure Virtual Desktop (classic) tenant to finish the process.
195195

196196
For example:
197197

@@ -205,7 +205,7 @@ To migrate your Azure virtual Desktop (classic) resources to Azure Resource Mana
205205
Complete-RdsHostPoolMigration -Tenant Contoso -HostPool Office -Location EastUS
206206
```
207207
208-
This will delete all service objects created by Azure Virtual Desktop (classic). You will be left with just the new Azure objects and users will only be able to see the feed for the newly created app groups on their clients. Once you are done finalizing your migration, you need to explicitly delete the tenant in Azure Virtual Desktop (classic).
208+
This will delete all service objects created by Azure Virtual Desktop (classic). You will be left with just the new Azure objects and users will only be able to see the feed for the newly created application groups on their clients. Once you are done finalizing your migration, you need to explicitly delete the tenant in Azure Virtual Desktop (classic).
209209
210210
5. If you've changed your mind about migrating and want to revert the process, run the **Revert-RdsHostPoolMigration** cmdlet.
211211

articles/virtual-desktop/azure-stack-hci.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ To set up Azure Virtual Desktop for Azure Stack HCI:
5454

5555
6. Add the virtual machine to the Azure Virtual Desktop host pool you created earlier by installing the [Azure Virtual Desktop Agent](agent-overview.md). After that, follow the instructions in [Register the VMs to the Azure Virtual Desktop host pool](create-host-pools-powershell.md#register-the-virtual-machines-to-the-azure-virtual-desktop-host-pool) to register the VM to the Azure Virtual Desktop service.
5656

57-
7. Follow the directions in [Create app groups and manage user assignments](manage-app-groups.md) to create an app group for testing and assign user access to it.
57+
7. Follow the directions in [Create application groups and manage user assignments](manage-app-groups.md) to create an application group for testing and assign user access to it.
5858

5959
8. Go to [the web client](./user-documentation/connect-web.md) and grant your users access to the new deployment.
6060

articles/virtual-desktop/cli-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,4 @@ Some PowerShell cmdlets require you to provide the object ID of Azure Virtual De
134134
Now that you know how to use Azure CLI and Azure PowerShell with Azure Virtual Desktop, here are some articles that use them:
135135

136136
- [Create an Azure Virtual Desktop host pool with PowerShell or the Azure CLI](create-host-pools-powershell.md)
137-
- [Manage app groups using PowerShell or the Azure CLI](manage-app-groups-powershell.md)
137+
- [Manage application groups using PowerShell or the Azure CLI](manage-app-groups-powershell.md)

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ To directly assign a user to a session host in the Azure portal:
7676
4. At the Azure Virtual Desktop page, go the menu on the left side of the window and select **Host pools**.
7777
5. Select the host pool you want to assign users to.
7878
6. Next, go to the menu on the left side of the window and select **Application groups**.
79-
7. Select the name of the app group you want to assign users to, then select **Assignments** in the menu on the left side of the window.
80-
8. Select **+ Add**, then select the users or user groups you want to assign to this app group.
79+
7. Select the name of the application group you want to assign users to, then select **Assignments** in the menu on the left side of the window.
80+
8. Select **+ Add**, then select the users or user groups you want to assign to this application group.
8181
9. Select **Assign VM** in the Information bar to assign a session host to a user.
8282
10. Select the session host you want to assign to the user, then select **Assign**. You can also select **Assignment** > **Assign user**.
8383
11. Select the user you want to assign the session host to from the list of available users.

0 commit comments

Comments
 (0)