Day 39: AZ-140 Pt.4.2 - Managing Users & Apps - Configure Apps

 




Section 4: Manage User Environments & Apps (20-25%)

Install and configure apps on a session host

The below should cover the following criteria for this section of the exam:

                            Disclaimers: 
                            • In the below steps, it should be noted I am not going to say click this n that, I will give a general overview but you will need to fill in the gaps with your knowledge of Azure. 
                            • All opinions below are my own and are not representative of any company I am linked with. 
                            • All scripts and information followed below is at your own risk and I hold no responsibility if you run any of it in production without testing in pre-production first.

                            Configure dynamic application delivery by using MSIX App Attach

                            MSIX App Attach is in public preview as of todays date. 
                            MSIX app attach is a way to deliver MSIX applications to both physical and virtual machines. However, MSIX app attach is different from regular MSIX because it's made especially for Windows Virtual Desktop. 

                            Essentially, what MSIX App Attach allows you to use existing MSIX packages in WVD environments.

                            What's cool about this is a few things:

                            • Existing MSIX apps you've created for line of business apps can be re-used for WVD.
                            • You can use SCCM packages, leveraging the same MSIX for physical workstations and virtual.
                            • No fussy application layering like in traditional environments (think ELM in Citrix).
                            • Utilize vendors producing more and more applications in MSIX so you don't need to package them yourselves, taking away requirements to manage off the shelf applications and updates.
                            • No requirements for on-prem steerage to host the files if you want to go fully cloud.
                            • Less environments being used, centralized locations, easier to upskill and support.

                            What's needed for MSIX in WVD?

                            The following from MS outlines the requirements:

                            • A functioning Windows Virtual Desktop deployment. To learn how to deploy Windows Virtual Desktop (classic), see Create a tenant in Windows Virtual Desktop. To learn how to deploy Windows Virtual Desktop with Azure Resource Manager integration, see Create a host pool with the Azure portal.
                            • A Windows Virtual Desktop host pool with at least one active session host.
                            • This host pool must be in the validation environment.
                            • The MSIX packaging tool.
                            • An MSIX-packaged application expanded into an MSIX image that's uploaded into a file share.
                            • A file share in your Windows Virtual Desktop deployment where the MSIX package will be stored.
                            • The file share where you uploaded the MSIX image must also be accessible to all virtual machines (VMs) in the host pool. Users will need read-only permissions to access the image.
                            • If the certificate isn't publicly trusted, follow the instructions in Install certificates.
                            So first I need to get myself access to this preview of MSIX.



                            Now, eventually you will get an email from Stefan himself, approving you for MSIX App attach.

                            I didn't message him back, he's probably really busy.


                            So now I need to perform the below commands on my WVD box - this can also probably be done on the gold image if you needed.

                            On the official blob about MSIX attach, it says you need todo the below.

                            #Disable Store auto update:

                            reg add HKLM\Software\Policies\Microsoft\WindowsStore /v AutoDownload /t REG_DWORD /d 0 /f
                            Schtasks /Change /Tn "\Microsoft\Windows\WindowsUpdate\Automatic app update" /Disable
                            Schtasks /Change /Tn "\Microsoft\Windows\WindowsUpdate\Scheduled Start" /Disable

                            #Disable Content Delivery auto download apps that they want to promote to users:

                            reg add HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager /v PreInstalledAppsEnabled /t REG_DWORD /d 0 /f
                            reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager\Debug /v ContentDeliveryAllowedOverride /t REG_DWORD /d 0x2 /f



                            I'll reboot this box now.

                            In the meantime, I will create an app (7zip) to use in this order:
                            • Download 7zip.msi installer - https://www.7-zip.org/download.html
                            • Download MSIX Packaging Tool - https://www.microsoft.com/en-gb/p/msix-packaging-tool/9n5lw3jbcxkf?rtc=1&activetab=pivot:overviewtab
                            • Install 7zip to local machine using the MSIX packaging tool - this will create my MSIX file.
                            • Create my VHDX by using disk management, this will house my MSIX extracted files.
                            • Download the MSIX Manager tool - https://aka.ms/msixmgr
                            • Use the MSIX manager tool to publish the files to your VHDX and apply ACLS.
                            • Create a file store (within a storage account) in Azure
                            • Configure NTFS permissions so your host pool machines have access to the store.
                            • Configure Storage SMB contributor role in Azure for the host pool machines to the store.
                            • Upload the VHD into your store (I just copy / paste rather than upload through ARM).
                            • On each of the hostpool machines, make sure the cert for the MSIX is installed to "Trusted People" within Local Computers.
                            • In your hostpool, add the MSIX, note the file path needs to be \\filestore\store\nameofvhd
                            • It will can the file, check everything's all good with your MSIX and then it'll add it to your hostpool
                            • You then create an application group for the MSIX, and choose whether you want it in the hostpools itself or as an app that runs by itself but spins up a WVD box in the background to host the app, or both... just select both, its cool. 
                            Look I made quake work in WVD.


                            So todo the above it's probably best to follow the below video from Dean Cefola as this outlines it very clearly, plus he has cool graphics popping up and it looks like it took a lot of time todo so props for that also.


                            So once you've followed Deans great video you should be an MSIX pro.

                            I would say, learning MSIX isn't easy and there's a lot of setup, plus as of now its not been fully released yet either so there's a huge amount of room for change but having a good/basic understanding of the provisioning process will be good to have and feel that its easy win points in the exam is you get lucky.

                            Implement application masking  deploy an application as a RemoteApp

                            What is app masking?
                            "Use Application Masking to manage user access of installed components. Application Masking may be used in both physical and virtual environments. Application Masking is most often applied to manage non-persistent, virtual environments, such as Virtual Desktops."
                            So essentially, we install everything to a layer - for simplicity sake we install our apps, printers, fonts and any other LOB applications we need, to the gold image layer or a snapshot of a gold image.

                            We then use a rule editor to scan the applications installed on the machine, and we use the editor to define what is and isn't masked, and the visibility of those applications is controlled through the use of application groups


                            I think a key thing to note with this approach is, where as in with App Attach the .vhd is layered and for all purposes, that vhd looks to be a part of the file system of the machine, it in actual fact it isnt - its a completely separate entity which we can control externally on the fly as we wish, where-as with App Masking, we would need to load up the image itself and remove/update the applications as/when needed, which may not be a big issue but its worth just quickly looking at the benefits of both, and the cons.

                            MSIX

                            Pros:
                            • Newer technology, cutting edge
                            • Repurpose existing MSI files
                            • Vendors often supply MSI files
                            • Ability to change an app on the fly without affecting users
                            • WVD VHD and MSIX VHD are different files
                            • Dynamic approach to modern management of devices
                            Cons:
                            • Newer technology, cutting edge
                            • Difficult to learn, a lot of content to cover
                            • A more risky approach, can be unstable
                            • In Public Preview still, bugs / improvements missing
                            • MSIX packaging can be frustrating
                            • Limited shell integration / right click
                            FSLogix

                            Pros:
                            • Older technology, more developed
                            • A more grounded base, wider understanding/guides available
                            • It just works, very granular and specific with rule sets
                            • Simple to learn and implement
                            • Can be used to hide apps via GPO if required
                            • Easy to get to grips with if you've used it in Citrix environments
                            Cons:
                            • Less dynamic, gold image would need to be mounted and application updated
                            • Older technology, I imagine MS will be focusing on MSIX rather than updating both
                            • Although more granular, its more fiddly, as it requires all registry entries to be appropriately captured
                            • Funky things happen, for example: If you deploy Java and mask it, create a security group etc. for it, that will work, but if you allowed your users the ability to install an additional Java version, and that user doesn't have visibility of the version of Java you've installed, then App Masking will bug out and display the Java you've deployed in addition to the version the user has deployed, causing conflicts in the image and causing reboots / disconnects etc.
                            In my opinion both are great options, however personally I am more keen on MSIX, its the future and will only get better and better, however if you hit limits where MSIX isn't great for everything, then I think a mix of both is an option, I recently mentioned that I think if you have apps that don't work completely due to the VHD mounting process, such as right click etc., then package those guys with App Masking in mind and migrate them to MSIX once the team have improved the solution - at least then you've got some stuff already in MSIX, people are aware of the process to implement and it wont be so difficult to move apps over in the future.

                            To summarize, both solutions have the same issue, the pros are also their cons, you need to decide what is the better option for your environment, or just use both.

                            Implement and manage OneDrive for Business for a multi-session environment. 
                            OneDrive provides a robust but simple-to-use cloud storage platform for small businesses, enterprises, and everything in between. Unlike other cloud storage providers, most of the advanced enterprise-focused features in OneDrive are available for every subscription type
                            I think everyone knows what OneDrive is by now, however the below is handy:

                            https://docs.microsoft.com/en-us/onedrive/sync-vdi-support
                            https://support.microsoft.com/en-us/office/onedrive-system-requirements-cc0cb2b8-f446-445c-9b52-d3c2627d681e?ui=en-us&rs=en-us&ad=us

                            Caveats:
                            • The minimum supported versions are: OneDrive 19.174.0902.0013 and FSLogix Apps 2.9.7486.53382.
                            • For Windows Server, the SMB network file sharing protocol is also required.
                            • The OneDrive sync app is not supported in remote app scenarios.
                            • The OneDrive sync app with FSLogix does not support running multiple instances of the same container simultaneously.
                            • Older systems only support VHDX, most newer use VHDX (which you should be using anyway).
                            Implement and manage Microsoft Teams AV Redirect
                            Microsoft Teams on Windows Virtual Desktop supports chat and collaboration. With media optimizations, it also supports calling and meeting functionality. 

                            Essentially with Teams, a big decision you have to make is with how you deploy it. The decision is do you want specific users to have Teams or all users that login to the device?

                            If you install teams for users, then it wont work in a non-persistent environment (non personal), this being one where a user is logging into a different machine (as part of a host pool) each time, however is you were using a personal allocation type, so a user has a set machine or physical box, then you can safely use the below for users. 

                            However, is using a non persistent environment, you should probably be using the second command.

                            #Install Teams for Users
                            msiexec /i <path_to_msi> /l*v <install_logfile_name> ALLUSERS=1

                            #Install Teams for Machine
                            msiexec /i <path_to_msi> /l*v <install_logfile_name> ALLUSER=1 ALLUSERS=1

                            Note:

                            These examples also use the ALLUSERS=1 parameter. When you set this parameter, Teams Machine-Wide Installer appears in Programs and Features in Control Panel and in Apps & features in Windows Settings for all users of the computer. All users can then uninstall Teams if they have admin credentials. It's important to understand the difference between ALLUSERS=1 and ALLUSER=1. The ALLUSERS=1 parameter can be used in non-VDI and VDI environments, while the ALLUSER=1 parameter is used only in VDI environments to specify a per-machine installation.

                            The below links give more detail, but its simple a case of:

                            • Is your environment persistent or not?
                            • Have you installed Teams to your gold layer?
                            • Have you configured the WVD registry setting in your environment?

                            NameTypeData/Value
                            IsWVDEnvironmentDWORD1

                            You will probably need to have further discussions with your Teams SME on this subject as what fits best for your business with exactly what you want redirected etc., but the above should be the bare minimum considerations.


                            Lastly, its worth looking at optimization for the image at the same time as the above.


                            Create and configure an application group

                            What is an application group?

                            Once you create a hostpool, you automatically have an application group of sorts. It's essentially where you add your desktops and applications to a group, and assign a user or selection of users based on a group with access to that resource, depending on what role you give those users.


                            So in the below screenshots, we see some application groups and an example of a user group I created called Multi-Session Users, which has Desktop Virtualization User assigned to it for that resource.




                            Troubleshoot application issues related to Windows Virtual Desktop

                            I will finish this section by linking the below for troubleshooting:


                            This part of the AZ140 is in the same realms of information as with producing your gold image, or planning your environment, its a lot of stuff to learn and keep on top of. I have spent the best part of a week in the evenings playing about with mainly MSIX app attach. It's definitely a section you need to get hands on with in your labs to get a good feel for, and even then I doubt until after a few years of using WVD on a daily basis you'll have an expert grounding on it all - I expect this role to be one that's broken down into many sub roles if within a production environment, being a role that you grow with as the technology itself (which is very new) evolves. 

                            Exciting but challenging all the same.





                            Comments

                            Popular posts from this blog

                            Day 34: AZ-140 Pt.2.3 - Create Gold Images & Deploy

                            Day 43: AZ-140 Pt.6 - Summary