Summary: Here this article is about to show you 3 ways to uninstall apps from LG phone. Also you will learn how to better manage applications on LG phone as well here.
Aug 14, 2015 The simplest way to uninstall apps is from the Start screen. Press the Windows logo on your keyboard or tap the icon on the screen. At the Start screen, tap and hold the app's tile you want to. Uninstall from the Start menu. Select Start and look for the app or program in the list shown. Press and hold (or right-click) on the app, then select Uninstall. Uninstall from the Settings page. Select Start, then select Settings Apps Apps & features. Or just click the shortcut link at the bottom of this article.
Nowadays, the number of Android users shows an upward trend so there are more and more problems happen during the usage of Android devices. The limited storage space is one of the troublesome problems. As an Android phone user, you may like to download and install many interesting and hot apps on the phone for better using the device. However, when too many apps exceeds the storage capacity of your LG phone, you have to think about how to delete some useless apps from the device.
Method 1: Uninstall Apps from An LG Smartphone via Android Assistant
If you are stuck in finding a way to delete apps from an LG mobile phone, you can directly have a try with the Android Assistant(Windows/Mac), which provides you an simple yet efficient solution to uninstall any app from your Android phone with one click. What's more, the Android Assistant also enables you install apps from computer into your LG phone, and also help you export applications from LG phone to computer for backup, which you can install to your phone with the app backup.
In fact, the Android Assistant is a practical Android data managing tool to help you transfer files between Android and computer, and managing Android phone/tablet data on computer directly and effortlessly, such as contacts, call logs, text messages, photos, videos, music, books and more. Also, it is fully compatible with almost all LG devices, including LG G7/G6+/G6/G5/G4, LG V40/V30+/V20/V10, LG Q8/Q7/Q7+/Q6, LG K10/K8, LG U/Google/X Power and etc.
Select the suitable version and have a try!
Step 1. Connect LG phone to computer.
First of all, you need to connect your LG phone with this computer via a USB cable. Launch the Android Assistant and enable USB debugging on your LG phone, it will detect your LG phone.
The program will show you the starting window as below once the connection is successful.
Step 2. Delete apps from LG phone.
All files on your LG phone are displayed in categories and listed on the left-side bar. For this topic, you just click 'Apps' to bring the apps managing window. Select apps that you want to delete and then click the 'Uninstall' button to wipe them from your LG phone within 1 click.
By the way, the 'Install' button is used to download apps from web and install apps to your LG phone while the 'Export' button is used to transfer apps from LG to computer after you selecting them from your LG phone.
Can't Miss:
Method 2. Permanently Delete Apps and App Data from LG with Android App Eraser
If you are looking for a way to delete your apps along with your app data forever from your LG phone, you must not miss the Android App Eraser (Windows/Mac) to help you out. Besides, please be aware that the simple 'Delete' button does not help you clear all history of apps from your LG phone, but the Android App Eraser can.
Actually, the Android App Eraser is designed to be a privacy protector, which helps you to protect your privacy on your Android phone, such as app data, contacts, text messages, notes, call logs, photos, videos, accounts & passwords and many more. Also, it is totally compatible with almost all LG phones as well.
Now, download the Android App Eraser on your computer and get started.
Note: Please do back up your important data on your LG phone before going further, since the program only support 'Eraser All Data' mode currently and all of your LG files will be erased completely and permanently.
Step 1. Connect LG to computer.
Run the Android App Eraser on your computer after installation and plug your LG phone to computer with a USB cable. Later, please install the MobileGo connector onto your device for successful connection.
Step 2. Delete apps and app data from LG forever.
When LG is successfully connected, you might see the main interface as below. All files on your LG phone will be scanned out for deletion. Simply click 'Erase All Data' button and confirm it to start erasing apps and app data from your LG phone.
Note: All other files will be wiped along with the apps when the erase process is finished. (iPhone is allowed to choose specific items for deletion as below, but Android not for now.)
You May Like:
Method 3. Remove Apps from LG G7/G6 Directly
Many Android devices offers the option to uninstall apps from the phone as well, so as the LG phones. To delete apps on LG phone, please follow the steps as below.
1. Unlock your LG phone and tap Settings icon > Apps & notifications option > App info option.
2. Find and select the applications you want to uninstall. Please note that if you do not see the system applications, click the Menu icon (upper right corner) > Show System.
3. To uninstall the app, just click Uninstall button, review the notification and click OK to confirm it.
Or you can just press and hold the apps on the Home screen, move it to the Uninstall button and release it. Later confirm it by tapping the Uninstall button to remove your app from LG. However, app data of the deleted apps will still remain on your device.
Words in the End:
Now, you have 3 ways to help you uninstall apps from LG phone. Personally I think the Android Assistant or Android App Eraser is much better. If you are in need, to, just get the powerful LG app uninstaller installed on your computer and enjoy the most effective and safest Android data managing solution. Leave your comment if you have any questions.
Related Articles:
Ongoing work on the next Win10 tweak guide.
I'm considering removing this method from the guide and linking to a separate how-to.
I very much need your input…
There are a variety of ways to uninstall Win10s built in apps. Some of them you can right-click a tile and uninstall. However, this doesn't work for all of them, or even most of them.
The fastest and Geekiest way to uninstall most of this stuff is via PowerShell.
This is an advanced way of doing this and should only be attempted by those who know what they are doing and have backups.
Uninstall Via PowerShell
You can uninstall via PowerShell > Get-AppxPackage. I'm not a big fan of this for most folks because it's complicated.
You need to run PowerShell as administrator to do this. You can run the following command to launch a new PowerShell windows as admin:
Start-Process powershell -Verb runAs
or
Go to All apps > Windows PowerShell folder > right-click Windows PowerShell > choose Run as Administrator
You can list the installed apps by copy/paste the following:
DISM /Online /Get-ProvisionedAppxPackages | select-string Packagename for Microsoft apps.
And
Get-AppxPackage | ft Name, PackageFullName -AutoSize for an extended list
Universal Commands
Uninstall All Apps: ***DANGEROUS
Get-AppxPackage -allusers | Remove-AppxPackage
Reinstall All Default Apps
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register '$($_.InstallLocation)AppXManifest.xml'}
The switch -allusers removes the apps from all accounts on the machine.
Some of these are not installed by default but are installed when you click on the Start Menu tile, whether you meant to or not.
READ WHAT THE APPS ARE FIRST
Most names are self-descriptive. If you don't know what it is then ask here or Google it.
The apps I recommend to uninstall via copy/paste (you can copy/paste all at once):Get-AppxPackage -allusers Microsoft.BingWeather* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.GetHelp* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.Microsoft3DViewer* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.MicrosoftOfficeHub* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.MicrosoftSolitaireCollection* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.MicrosoftStickyNotes* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.MixedReality.Portal* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.Office.OneNote* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.People* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.Print3D* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.ScreenSketch* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.SkypeApp* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.StorePurchaseApp* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.Wallet* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.WindowsAlarms* | Remove-AppxPackage
Get-AppxPackage -allusers microsoft.windowscommunicationsapps* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.WindowsFeedbackHub* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.WindowsMaps* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.WindowsSoundRecorder* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.WindowsStore* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.Xbox.TCUI* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.XboxApp* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.XboxGameOverlay* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.XboxGamingOverlay* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.XboxIdentityProvider* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.XboxSpeechToTextOverlay* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.YourPhone* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.ZuneMusic* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.ZuneVideo* | Remove-AppxPackage
——————————————————————-
Apps that are or have been installed by MS in the past or via just by clicking on the tile:
Delete Apps Iphone Itunes
Get-AppxPackage -AllUsers *ActiproSoftwareLLC* | Remove-AppxPackage
Get-AppxPackage -AllUsers *AdobeSystemsIncorporated.AdobePhotoshopExpress* | Remove-AppxPackage
Get-AppxPackage -AllUsers Microsoft.BingNews* | Remove-AppxPackage
Get-AppxPackage -AllUsers *CandyCrush* | Remove-AppxPackage
Get-AppxPackage -AllUsers *Duolingo* | Remove-AppxPackage
Get-AppxPackage -AllUsers *EclipseManager* | Remove-AppxPackage
Get-AppxPackage -AllUsers *Facebook* | Remove-AppxPackage
Get-AppxPackage -AllUsers *king.com.FarmHeroesSaga* | Remove-AppxPackage
Get-AppxPackage -AllUsers *Flipboard* | Remove-AppxPackage
Get-AppxPackage -AllUsers *HiddenCityMysteryofShadows* | Remove-AppxPackage
Get-AppxPackage -AllUsers *HuluLLC.HuluPlus* | Remove-AppxPackage
Get-AppxPackage -AllUsers *Pandora* | Remove-AppxPackage
Get-AppxPackage -AllUsers *Plex* | Remove-AppxPackage
Get-AppxPackage -AllUsers *ROBLOXCORPORATION.ROBLOX* | Remove-AppxPackage
Get-AppxPackage -AllUsers *Spotify* | Remove-AppxPackage
Get-AppxPackage -AllUsers *Netflix* | Remove-AppxPackage
Get-AppxPackage -AllUsers *Microsoft.SkypeApp* | Remove-AppxPackage
Get-AppxPackage -AllUsers *Twitter* | Remove-AppxPackage
Get-AppxPackage -AllUsers *Wunderlist* | Remove-AppxPackage
Delete Apps On Iphone 7
——————————————————————-
All the apps installed by default on Win10 20H2:
Delete Apps On Apple Watch
Get-AppxPackage -allusers Microsoft.549981C3F5F10* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.BingWeather* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.DesktopAppInstaller* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.GetHelp* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.Getstarted* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.HEIFImageExtension* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.Microsoft3DViewer* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.MicrosoftEdge.Stable* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.MicrosoftOfficeHub* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.MicrosoftSolitaireCollection* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.MicrosoftStickyNotes* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.MixedReality.Portal* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.MSPaint* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.Office.OneNote* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.People* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.Print3D* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.ScreenSketch* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.SkypeApp* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.StorePurchaseApp* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.VCLibs.140.00* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.VP9VideoExtensions* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.Wallet* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.WebMediaExtensions* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.WebpImageExtension* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.Windows.Photos* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.WindowsAlarms* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.WindowsCalculator* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.WindowsCamera* | Remove-AppxPackage
Get-AppxPackage -allusers microsoft.windowscommunicationsapps* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.WindowsFeedbackHub* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.WindowsMaps* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.WindowsSoundRecorder* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.WindowsStore* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.Xbox.TCUI* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.XboxApp* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.XboxGameOverlay* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.XboxGamingOverlay* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.XboxIdentityProvider* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.XboxSpeechToTextOverlay* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.YourPhone* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.ZuneMusic* | Remove-AppxPackage
Get-AppxPackage -allusers Microsoft.ZuneVideo* | Remove-AppxPackage
——————————————————————-