Install Msix Powershell All Users [new]
Add-AppxProvisionedPackage -Online ` -PackagePath "C:\installers\MyApp.msix" ` -LicensePath "C:\installers\license.xml" ` -SkipLicense
Example script to install for each local user profile (run as Administrator): install msix powershell all users
When you use Add-AppxProvisionedPackage , the package is for the machine. The actual installation for each user happens during their first logon after provisioning. This is why you might not see the app in the Start Menu immediately for currently logged-in users until they sign out and back in. install msix powershell all users
Add-AppxPackage -Path "C:\path\to.msix" # current user only install msix powershell all users
This provisions the package for all new users and existing users when they log in.
: Applications distributed directly via the Microsoft Store are typically user-scoped and cannot be provisioned machine-wide through the Store itself; they require sideloading using the methods above.