[Q] adb commands need help - Verizon HTC One (M9)

i need disable start up app in system , im not need remove it need only stop it even if make hard reset or format for phone so i need adb command to disable it

logy122 said:
i need disable start up app in system , im not need remove it need only stop it even if make hard reset or format for phone so i need adb command to disable it
Click to expand...
Click to collapse
only if you are rooted... pm disable <package name>
otherwise use the built in app manager to disable what you can (not all can be disabled).

:crying:
dottat said:
only if you are rooted... pm disable <package name>
otherwise use the built in app manager to disable what you can (not all can be disabled).
Click to expand...
Click to collapse
im trying but not stooped , any other way with adb commands ?

You Can Disable It From Setting>App
Or Use StartUp Manager Apps From Google Play

Related

Cancel firmware update

Hi
I accedently pressed the update button, and it started downloading the s9 firmware update.
I paused it, but I can't seem to cancel it.
I tried restarting the phone, but it won't go away.
Cant find a way to remove the annoying notification.
Help?
Boot to recovery and clear CACHE
Necromancer3 said:
Hi
I accedently pressed the update button, and it started downloading the s9 firmware update.
I paused it, but I can't seem to cancel it.
I tried restarting the phone, but it won't go away.
Cant find a way to remove the annoying notification.
Help?
Click to expand...
Click to collapse
dont forget , Developer options and activate USB debugging
use adb shell (no need root) to uninstall this file com.wssyncmldm.apk
use this comands
adb start-server
adb shell
pm uninstall -k --user 0 com.wssyncmldm.apk
PeterParker said:
dont forget , Developer options and activate USB debugging
use adb shell (no need root) to uninstall this file com.wssyncmldm
use this comands
adb start-server
adb shell
pm uninstall -k --user 0 com.wssyncmldm
Click to expand...
Click to collapse
I did exactly as you instructed and got back
Failure [not installed for user 0]
Click to expand...
Click to collapse
Is there another file to uninstall?
overclockxp said:
I did exactly as you instructed and got back
Is there another file to uninstall?
Click to expand...
Click to collapse
Sorry, file name is com.wssyncmldm.apk, try it work very well for me
PeterParker said:
dont forget , Developer options and activate USB debugging
use adb shell (no need root) to uninstall this file com.wssyncmldm.apk
use this comands
adb start-server
adb shell
pm uninstall -k --user 0 com.wssyncmldm.apk
Click to expand...
Click to collapse
PeterParker said:
Sorry, file name is com.wssyncmldm.apk, try it work very well for me
Click to expand...
Click to collapse
I dont have anything with wssyncmldm in the name. I even paid for package Disabler pro and it said nothing existed with that in the name.
What version of the S9 are you using? I have the Verizon S9 model.
Thank you for your help with this.
overclockxp said:
I dont have anything with wssyncmldm in the name. I even paid for package Disabler pro and it said nothing existed with that in the name.
What version of the S9 are you using? I have the Verizon S9 model.
Thank you for your help with this.
Click to expand...
Click to collapse
My version is SM-G960F
I used Package disable pro and disabled anything that said system update and never had an update notification. The section for system update in settings even disappeared.
PeterParker said:
My version is SM-G960F
Click to expand...
Click to collapse
You have the European version. Lucky you can cancel the update.

Bootloop after uninstalling com.miui.securitycenter app with adb

Hi,
I've got Redmi Note 8T updated yesterday (I think V11.0.5.0.PCXEUXM).
Today I used adb command to uninstall com.miui.securitycenter app and after a reboot the device doesn't boot anymore.
Bootloader is locked.
Is there a way to recover without deleting user data?
ildani said:
Hi,
I've got Redmi Note 8T updated yesterday (I think V11.0.5.0.PCXEUXM).
Today I used adb command to uninstall com.miui.securitycenter app and after a reboot the device doesn't boot anymore.
Bootloader is locked.
Is there a way to recover without deleting user data?
Click to expand...
Click to collapse
yes there are a few apps which you can't uninstall otherwise you'll face bootloop like mi security, digital wellbeing etc..but the good news is since you uninstalled using adb so you don't have to do a lot of work to recover your phone..use the following command to reinstall the app :
Code:
adb shell cmd package install-existing <name of package>
This works because applications truly aren’t being fully uninstalled from the device using adb command, they are just being uninstalled for the current user (user 0 is the default/main user of the phone) and come back when you reset your phone or use the above mentioned command.
Thank you @the_weird_aquarian for your reply, but I couldn't access adb shell anymore so I had to wipe data.
(digital wellbeing as far as I know can be disabled/uninstalled without problems).
Same here, I use redmi note 8 pro. Just go to recovery mode, wipe data... Ur phone should working now. Wipe data make factory reset. I don't see other option to keep data. Except u ever back up using mipcsuite
where to use this command ? in twrp or fastboot mode ?
loopypalm said:
is there a way to freez or delete "com.miui.securitycenter" and "com.android.updater" without bootloop ???
where to use this command ? in twrp or fastboot mode ?
is this the right way to use it :
adb shell cmd package install-existing com.android.updater
Click to expand...
Click to collapse
Unfortunately you cannot uninstall com.miui.securitycenter or else your phone will go into bootloop...It's a core miui component and xiaomi designed it that way..
regarding the com.android.updater I haven't tried deleting it so I can't confirm if your phone will enter bootloop after deleting it or not...
adb shell cmd package install-existing com.android.updater
is the command to install any package back if you want..but it'll only work if you've only removed packages via adb..I've already explained why it works that way in my previous reply...If you delete folders right away from /system/app or /system/priv-app like I do, then this command won't work.
To uninstall any package via adb, download minimal adb and fastboot, connect phone normally to pc (no twrp or fastboot required), open cmd in adb and fastboot drivers path and use following commands (Hit ENTER after each command):
Code:
adb shell
pm uninstall -k --user 0 packagename
the_weird_aquarian said:
Unfortunately you cannot uninstall com.miui.securitycenter or else your phone will go into bootloop...It's a core miui component and xiaomi designed it that way..
regarding the com.android.updater I haven't tried deleting it so I can't confirm if your phone will enter bootloop after deleting it or not...
adb shell cmd package install-existing com.android.updater
is the command to install any package back if you want..but it'll only work if you've only removed packages via adb..I've already explained why it works that way in my previous reply...If you delete folders right away from /system/app or /system/priv-app like I do, then this command won't work.
To uninstall any package via adb, download minimal adb and fastboot, connect phone normally to pc (no twrp or fastboot required), open cmd in adb and fastboot drivers path and use following commands (Hit ENTER after each command):
Code:
adb shell
pm uninstall -k --user 0 packagename
Click to expand...
Click to collapse
yes, i did the command while the phone is on and it worked
but i'm speaking about when the phone is in bootloop
what do you do in that case ? (beside restore the twrp image)
loopypalm said:
yes, i did the command while the phone is on and it worked
but i'm speaking about when the phone is in bootloop
what do you do in that case ? (beside restore the twrp image)
Click to expand...
Click to collapse
oh just connect your device to pc while it's in twrp and then use the commands.
the_weird_aquarian said:
oh just connect your device to pc while it's in twrp and then use the commands.
Click to expand...
Click to collapse
Thx ! I'll try that .
the_weird_aquarian said:
oh just connect your device to pc while it's in twrp and then use the commands.
Click to expand...
Click to collapse
dosn't work
i try : adb shell pm list packages
while the phone is ON = worked
while the phone is in TWRP = not work
Does adb respond while device is in bootloop?
OliveReeve said:
Does adb respond while device is in bootloop?
Click to expand...
Click to collapse
yes but as far as i know, only adb fastboot commands work
OliveReeve said:
Does adb respond while device is in bootloop?
Click to expand...
Click to collapse
Yes It works. Just try installing the com.miui.securitycenter package through "adb shell pm install-existing com.miui.securitycenter" while the MIUI logo appears in the bootloop.
Tried and saved my bricked device.
Thanks for the tip on "install-existing", folks. Saved my bacon.
the_weird_aquarian said:
yes there are a few apps which you can't uninstall otherwise you'll face bootloop like mi security, digital wellbeing etc..but the good news is since you uninstalled using adb so you don't have to do a lot of work to recover your phone..use the following command to reinstall the app :
Code:
adb shell cmd package install-existing <name of package>
This works because applications truly aren’t being fully uninstalled from the device using adb command, they are just being uninstalled for the current user (user 0 is the default/main user of the phone) and come back when you reset your phone or use the above mentioned command.
Click to expand...
Click to collapse
thanks! You just safed my phone xD
same problem here. had to wipe data. never going to buy this **** again. **** xiaomi. **** them
Saved my data!
Reminds me of when I use to play with Regedit... dependencies, dependencies, dependencies
can i disable (not delete) security center via ADB or causes this also bootloop? What About Gallery & Theme App?
droi1 said:
can i disable (not delete) security center via ADB or causes this also bootloop? What About Gallery & Theme App?
Click to expand...
Click to collapse
the adb command :
pm uninstall -k --user 0
just freez the app for user 0 , it does not remove it (check with a file explorer after a reboot)
and you can't touch security app or you will face bootloop
that app alone is what made me look for a custom rom ...
about gallery and theme you can, but i suggest you do a full backup just in case ...

Stock gallery3d apk needed

Hello, can I kindly ask for link to stock gallery3d apk 'cause after debloating by uninstall command in adb I removed it. I don't wanna do factory reset. Reinstalling command is not working but it's obvious since it is not disabled.
I did it myself. For everyone who don't know how to reinstall app after uninstalling it with adb.
Go to adb again. Type adb shell after that you need to enable deleted package typing pm enable com.coloros.gallery3d after that you need to install package typing package install-existing com.coloros.gallery3d (or pm install-existing com.coloros.gallery3d - I forgot what exactly I type). After that everything is working.
Were you able to uninstall game center and app market safely?

Question Need help remove Active Device Admin app

I have Galaxy S22 Ultra un-rooted.
I installed Sgallery app and I enable device admin via ADB in order to use some fuctions like "App Hide".
adb command : adb shell dpm set-device-owner com.hld.anzenbokusu/.receiver.DPMReceiver
How can I reset the device-owner to default so I can uninstall Sgallery?
I need help.
what's the adb command to remove "com.hld.anzenbokusu/.receiver.DPMReceiver" as device-owner?
anyone kind enough to HELP.
It is very time consuming to flash stock firmware and setup all apps all over again.

Question How to turn on System UI tuner on Android 13 without installing related APP

previously to turn on system ui tuner, I use takser to launch com.android.systemui
But now it does not work anymore, I have to install this app
Thanks for your attention
bush911 said:
previously to turn on system ui tuner, I use takser to launch com.android.systemui
But now it does not work anymore, I have to install this app
Thanks for your attention
Click to expand...
Click to collapse
As far as I know, you are going to have to use an app of some kind....nova, the app you listed, or something else. You can always uninstall afterwards....your selections should hold.
I use a terminal utility on the phone (material terminal)
i give it superuser priveledges
send this first pm enable com.android.systemui/.tuner.TunerActivity
then send this am start com.android.systemui/.tuner.TunerActivity
this will programmatically enable it
aer0zer0 said:
I use a terminal utility on the phone (material terminal)
i give it superuser priveledges
send this first pm enable com.android.systemui/.tuner.TunerActivity
then send this am start com.android.systemui/.tuner.TunerActivity
this will programmatically enable it
Click to expand...
Click to collapse
Thank you, works very well for me

Categories

Resources