Get-AppxPackage | where NonRemovable -eq $false | sort Name | ft Name, PackageFullName
Get-AppxPackage -AllUsers | where { $_.NonRemovable -eq $false -and $_.InstallLocation -ne $null} | sort Name | ft Name, PackageFullName
Get-AppxProvisionedPackage -Online | ft DisplayName, PackageName
gci $Env:ProgramFiles\WindowsApps | ft Name
Get-AppxPackage -Name *skype* | Remove-AppxPackage
Get-AppxPackage -AllUsers -Name *skype* | Remove-AppxPackage -AllUsers
If this fails, you can try deleting the app folders from %PROGRAMFILES%\WindowsApps
as the TrustedInstaller
user, for example with WinAero Tweaker, ExecTi, or PsExec. You may want to back them up in case reinstallation is difficult.
Get-AppxProvisionedPackage -Online | where PackageName -like *zune* | Remove-AppxProvisionedPackage -Online
dism /Online /Remove-ProvisionedAppxPackage /PackageName:"Microsoft.ZuneMusic_11.2403.5.0_neutral_~_8wekyb3d8bbwe"
In Windows 11, the package
Microsoft.XboxGamingOverlay
is needed to avoid the error message when launching games about Windows not being able to handle the linkms:gamingoverlay
. If you uninstalled it, you can reinstall Xbox Game Bar from the Microsoft Store.In Windows 10, you can uninstall all Xbox-related packages and still avoid the
ms:gamingoverlay
warning by disabling Xbox Game Bar in Settings › Gaming › Xbox Game Bar.