How to remove Microsoft packages from PowerShell was previously discussed in year 2021 here. Microsoft continues to provide app installs which some of us do not want.
Look at apps in Windows Settings (press WindowsKey+i then choose Apps) and attempt to uninstall apps there. Some apps allow uninstall, and others such as Bing Search do not.
Steps to remove Bing Search app:
- Right-click on Start button and choose "Windows PowerShell (Admin)"
- In the PowerShell window, look for the package name: Get-AppxPackage | select-string "bing"
- Remove the package: Get-AppxPackage *bing* | Remove-AppxPackage