Here is the core PowerShell command to install an MSIXBundle for all users:
Add-AppxProvisionedPackage -Online -PackagePath "C:\Path\To\YourApp.msixbundle" -SkipLicense Use code with caution. -Online : Targets the currently running operating system.
Input the command pointing to your specific file.
Get-AppxPackage *AppName* | Remove-AppxPackage

