
Mastering Azure Virtual Desktop || Portal Application Group Creation || Session 2
#azurevirtualdesktop #avd #fslogix #azure #azurecertification #Joyroute-jojo π: 1. Introduction. 00:00:27 π: 2. Types of Application Groups 00:01:49 π: 3. Application Group Creation in the Portal 00:04:20 π: 4. PowerShell Application Group Creation 00:10:08 π: 5. Test Application Group Access 00:10:31 azure virtual desktop setup step by step Azure Virtual Desktop Setup Made Easy - Step-by-step Guide Azure Virtual Desktop Az - 140 | Part 1 - Introduction | Office365 Guide Complete Guide to Setting up Azure Virtual Desktops How to get started with Azure Virtual Desktop | Azure Tips and Tricks Azure Virtual Desktop | Quick Setup Introduction to Azure virtual Desktop in Hindi | Full Course playlist | Azure AZ-140 Azure virtual desktop training New AVD Admin Portal | Azure Virtual Desktop ___________________________________________________________ PowerShell Application Group Creation ___________________________________ Install the Azure PowerShell Module if $PSVersionTable.PSEdition -eq 'Desktop' -and Get-Module -Name AzureRM -ListAvailable Write-Warning -Message 'Az module not installed. Having both the AzureRM and ' + 'Az modules installed at the same time is not supported.' else Install-Module -Name Az -AllowClobber -Scope CurrentUser FROM: https://docs.microsoft.com/en-us/powe... Verify the WVD Moduel is Installed Get-InstalledModule -Name Az.Desk* Install the WVD module Only Install-Module -Name Az.DesktopVirtualization Update the module Update-Module Az.DesktopVirtualization Create and manage Application Groups Connect-AzAccount Find and set the Host Pool ARM Path Get-AzWvdHostPool -ResourceGroupName Lab1HPRG -HostPoolName Lab1HP $hostPoolArmPath = Get-AzWvdHostPool -ResourceGroupName Lab1HPRG -HostPoolName Lab1HP.Id Create an Application Group New-AzWvdApplicationGroup -Name "PowerShellLabAG" ` -FriendlyName "PowerShellLabAG" ` -ResourceGroupName "Lab1HPRG" ` -ApplicationGroupType "RemoteApp" ` -HostPoolArmPath $hostPoolArmPath ` -Location CentralUS Verify the Application Group Get-AzWvdApplicationGroup Add the Desktop Virtualization User Role Assignment to a single user New-AzRoleAssignment -SignInName "[email protected]" ` -RoleDefinitionName "Desktop Virtualization User" ` -ResourceName "PowerShellLabAG" ` -ResourceGroupName "Lab1HPRG" ` -ResourceType "Microsoft.DesktopVirtualization/applicationGroups" Add the Desktop Virtualization User Role Assignment to a Group The Object ID is in the Azure Active Directory Group Properties New-AzRoleAssignment -ObjectId "046485e0-6645-4d15-a09f-7162e7441b68" ` -RoleDefinitionName "Desktop Virtualization User" ` -ResourceName "PowerShellLabAG" ` -ResourceGroupName "Lab1HPRG" ` -ResourceType "Microsoft.DesktopVirtualization/applicationGroups" Verify Role Assignment Get-AzRoleAssignment -ResourceGroupName "Lab1HPRG" ` -ResourceName "PowerShellLabAG" ` -ResourceType "Microsoft.DesktopVirtualization/applicationGroups" ` -RoleDefinitionName "Desktop Virtualization User" Get the Start Menu Items Get-AzWvdStartMenuItem -ApplicationGroupName "PowerShellLabAG" -ResourceGroupName "Lab1HPRG" | Select-Object AppAlias,FilePath | Format-Table Add the Start Menu Application to the Application Group New-AzWvdApplication -AppAlias "Paint" ` -GroupName "PowerShellLabAG" ` -Name "Paint" ` -ResourceGroupName "Lab1HPRG" ` -CommandLineSetting Allow Add a file based application to the Application Group New-AzWvdApplication -GroupName "PowerShellLabAG" ` -Name "Perfmon" ` -ResourceGroupName "Lab1HPRG" ` -Filepath "C:\Windows\system32\perfmon.exe" ` -IconPath "C:\Windows\system32\perfmon.exe" ` -IconIndex "0" ` -CommandLineSetting Allow ` -ShowInPortal Verify Application Groups Get-AzWvdApplication -GroupName "PowerShellLabAG" -ResourceGroupName "Lab1HPRG" Register the Application Group to a workspace Start by getting the Application Group path Get-AzWvdApplicationGroup -ResourceGroupName "Lab1HPRG" -Name "PowerShellLabAG" | Format-List Assign the Application Group path to a variable $appGroupPath = Get-AzWvdApplicationGroup -ResourceGroupName "Lab1HPRG" -Name "PowerShellLabAG"Id Add the Application Group to the Workspace Register-AzWvdApplicationGroup -ResourceGroupName "Lab1WSRG" ` -WorkspaceName "Lab1WS" ` -ApplicationGroupPath $appGroupPath Dive into the world of Azure Virtual Desktop with our in-depth tutorial series. Whether youβre a seasoned IT professional or just starting out, our guide covers everything you need to know about AVD. Start with an introduction to the basics, then explore the different types of application groups available. Learn how to create application groups directly in the Azure portal with step-by-step instructions.