Deleting apps you've installed is easy. Doing the same with the preinstalled defaults is trickier as they don't appear in Control Panel. Instead, type "Powershell" into the Cortana box, right-click the top result and pick "Run as administrator". PowerShell is text-based, but the formula for removing a program is the same:
Get-AppxPackage *app_name* | Remove-AppxPackage
Replace app-name as appropriate. So, to delete Zune Music, use:
Get-AppxPackage *zunemusic* | Remove-AppxPackage
For a list of all apps installed on your system, use Get-AppxPackage on its own, read offthe application title from the Name line ofeach entry, and use the last part of it between the asterisks in the commands above. Microsoft.ZuneVideo, for example, would be truncated to *zunevideo*.
Apps that you've installed from the Windows Store don't appear in Control Panel's "Add and Remove Programs" pane, but can be removed by right-clicking their icon on the Start menu and picking Uninstall.
Hope this information is helpful, please subscribe to us to get other hacks as we publish.
Hope this information is helpful, please subscribe to us to get other hacks as we publish.
No comments:
Post a Comment
Dear visitor,
Please do not post spam. All comments will be moderated before approval.