el-musleh
el-musleh

Reputation: 61

How to run adb shell?

I read an article about fix phone issue but they said run this code to fix.

adb shell am start -n com.google.android.setupwizard/.SetupWizardTestActivity

From this Blog here

My device is LG G3 (android v5 OS)

So, is there any apk from playstore or google to download to run this command ?

Upvotes: 1

Views: 22399

Answers (2)

Bek
Bek

Reputation: 8531

If you work on windows os open this path in your explorer C:\Users\YOUR_PC_NAME\AppData\Local\Android\sdk\platform-tools then press shift and right click. then choose open command window here. Also you have to enable usb debugging on your phone to work with adb commands.

Upvotes: 3

Manohar
Manohar

Reputation: 23414

For Windows:

  1. Open SDK folder
  2. go to platform-tools
  3. hold shift and right click
  4. click open command window here
  5. in command prompt run you commands

Upvotes: 6

Related Questions