Hope I am asking the right kind of question. I recently gained from my father a brand new phone his company gave him shortly before his retirement. They gave it to him knowing he was leaving and were trying to be nice. However the phone was still attached to the security settings of the company, including being tied to a Intune Company Portal app, I believe via Knox. Long story short I managed to uninstall that app after eventually being able to revoke its admin app permissions (previously it kept reinstalling itself). I am now trying to put the final nail in the coffin to make sure it can't come back to haunt me.
I have managed to connect my s10 to ADB on my computer and a site I found that helped me with some of the above gave a list of commands to remove Knox. They all follow the format in the title, which to repeat here is
adb shell "pm block com.sec.knox.bridge"
however the return is Unknown command: block
I imagine this was a fix for a previous version using old nomenclature. So my question is how do I correct the above syntax for that statement to do its job?
Cheers, Shane
pm hide
orpm disable --user 0
followed by the package name. Do know that all of this would work as long as you don't do a factory reset. Once you reset, you'd have to repeat the cycle. – Firelord Aug 22 '20 at 02:18pm block
,pm hide
, andpm disable
: pm hide VS pm disable — the identity crisis – Andrew T. Aug 22 '20 at 05:50