The standard way to accomplish a machine-wide installation is using the Add-AppxProvisionedPackage cmdlet from the (Deployment Image Servicing and Management) module. Command Syntax: powershell
: Stages the app at the system level. Windows then "installs" it for each user the next time they sign in. AVEVA™ Documentationhttps://docs.aveva.com Silent Install with MSIX - AVEVA™ Documentation install msix powershell all users
Remove-AppxPackage -Package "YourPackageFullName" -AllUsers # Or for provisioned packages: Remove-AppxProvisionedPackage -Online -PackageName "YourPackageName" The standard way to accomplish a machine-wide installation