
Alternatively, you can use Get-AppxPackage “Package Name” | Remove-AppxPackage for the same purpose.Remove-AppxPackage - Package “Package Name”. Now, enter the cmdlet below to uninstall it:.Search for and copy the name of the app (under Name) you want to uninstall.On PowerShell, enter Get-AppxPackage -AllUsers to get a list of all UWP or store apps.So, you also have to use this module to uninstall such apps.

The Universal Windows Platform (UWP) applications you install using the Microsoft Store make use of the Appx module. Through Remove-AppxPackage Cmdlet for Microsoft Store Software

On PowerShell, enter the command Get-WmiObject -Class Win32_Product | Select-Object -Property Name to get a list of all software that used the MSI installer.While you can’t use it to uninstall other apps, such as those that used the EXE installer, it is possible to use it on remote computers in the same network.

You can use the uninstall method under to uninstall apps that you installed on your computer using a Microsoft Installer (MSI) script. Using Uninstall Method for MSI Installed Software You can also go through them and apply the necessary cmdlets on a PowerShell script. If you wish to use PowerShell core (v6+), you need to use the pwsh Run command.

