Auto Deploy Progressive Web Applications (PWA) using Intune or PowerShell
Objective
In this article I will walk you through installing progressive web app’s, or PWA’s to endpoint machines using either PowerShell or Microsoft Intune. You may want to do this for users with frontline licenses that grant them web apps but not full desktop application’s.
What are Progressive Web Applications?
Progressive Web Apps (PWAs) are web applications that use modern web technologies to deliver an app-like experience to users, but without requiring them to install a traditional app from an app store. Think of them as a blend between websites and mobile/desktop apps.
Resolution
Below, I will walk you through installing PWA’s on end user machines silently, without user interaction.
Intune
The intune configuration policy follows the WebAppInstallForceList. You can currently define default_launch_container
, create_desktop_shortcut
, fallback_app_name
, custom_name
, custom_icon
and install_as_shortcut
. The site goes into detail what each setting configures.
Note: Currently there are … Continue...