There are some built-in apps in Windows 10 that aren’t useful and you’re having trouble deleting them. It makes you very uncomfortable, do not be angry I will show you how to easily remove integrated applications using PowerShell.
2. In PowerShell you need to type Get-AppxPackage -AllUsers then press Enter.
3. Then scroll down until you see the app you want to remove, in this example I will remove “Bing Weather”> Press Ctrl + C to copy the name of the app you want to remove (line “Package full name”)
4. Continue to type Remove-AppxPackage PackageFullName (replace PackageFullName with the app name you copied in step 3 and Ctrl + V)> press Enter.
Note: If you want to remove all default apps at all users at the same time just type Get-AppxPackage -AllUsers | Remove-AppxPackage.
If you want to remove all default Apps and all installed apps from the store at once type the Get-AppxPackage -user command | Remove-AppxPackage (replace the account with your username).