use powershell script to install UWP app whether as bulk or single package run them in the directory containing your UWP packages
- Script "UWP-Current-user-install-prompts.ps1"
This script installs UWP packages for the current user using Add-AppxPackage. It prompts the user for confirmation before installing each package.
- Script "UWP-Current-user-install.ps1"
This script installs UWP packages for the current user using Add-AppxPackage, but prompts the user only once to install all found packages.
- Script "UWP-allusers-install-prompts.ps1"
This script installs UWP packages for all users using Add-AppxProvisionedPackage, prompting the user for each package.
- Script "UWP-allusers-install.ps1"
This script installs UWP packages for all users using Add-AppxProvisionedPackage, but prompts the user only once to install all found packages.