Silent Uninstall with MSIX
- Last UpdatedApr 10, 2025
- 1 minute read
PowerShell can be used to uninstall an MSIX package. This can either be done for the current user, or for all users on the workstation.
The following syntax uninstalls the Unified Engineering MSIX for the current user, using the Remove-AppPackage PowerShell command.
Remove-AppPackage -Package AVEVA.UnifiedEngineering_XXXX.2408.1409.5230_x64__rmxc60bdg8z8w
In the examples, XXXX indicates the product version number, for example, 3000.
From an Administrative PowerShell prompt/script, the following syntax uninstalls the Unified Engineering MSIX for all users, using the Remove-AppxProvisionedPackage PowerShell command.
Remove-AppxProvisionedPackage -Online -AllUsers -PackageName AVEVA.UnifiedEngineering_XXXX.2408.1409.5230_x64__rmxc60bdg8z8w