G920w8 Quitar Cuenta Samsung |
Bienvenido, invitado ( Identificarse | Registrarse )
![]() ![]() |
G920w8 Quitar Cuenta Samsung |
![]()
Publicado:
#1
|
|
Colaborador del Clan ![]() ![]() Grupo: Miembros Mensajes: 363 Agradecimientos: 422 Registrado: 3-December 12 Desde: Buenos Aires Miembro No.: 410,779 ![]() |
G920W8 Quitar Cuenta Samsung
Firmware en el telefono: PDA: G920W8VLU5CPI4 Aclaro que en modo de descarga no lo hace porque aun chimera no tiene actualizado en ingeniería y por eso hay que usar uno para hacer la operación: Proceso: 1. Descargar G920W8_COMBINATION_OYA_FA50_G920W8VLU5API1_FACTORY Combinacion G920w8 2. Flashear el teléfono 3. El teléfono se iniciará en el menú de combinación y abrirá la comunicación adb 4. Utilice la opción Restablecer FRP / bloqueo de reactivación 5. Una vez terminado haga una borrado manual del menú del teléfono que marca la depuración del usb y el desbloqueo del OEM 6. Flash con la última versión de firmware Si no ve la opción de desbloqueo de OEM después de realizar el proceso Reiniciar FRP / Bloqueo de reactivación, abra una ventana de cmd de Windows y ejecute los siguientes comandos: 1- adb devices 2- adb shell netcfg 3- adb shell content insert --uri content: // settings / secure --bind name: s: user_setup_complete --bind value: s: 1 [Reset FRP/Reactivation lock started] Selected model: SM-G920W8 Checking firmware image... Present. Flashing firmware image... Flashing firmware image. Flashing firmware... Waiting for download mode. Connecting. Reading PIT. Flashing image. Restarting phone. To complete FRP/Reactivation Reset goto "Backup and reset" and select "Factory data reset". Succeeded. Finished successfully. Finished at local time: [07.05.17 17:17:19] WorkID: 23313978 Mensaje modificado por super raton el Jul 6 2017, 06:49 AM |
|
|
A continuacion 1 usuario(s) le Agradece(n) a super raton por su Colaboracion: JDURAN13 |
Anunciante Autorizado |
![]()
Publicado:
#
|
![]() Estas ofertas pudieran interesarte. ![]() |
|
|
|
![]() ![]()
Publicado:
#2
|
|
![]() Miembro del Clan ![]() Grupo: Miembros Mensajes: 44 Agradecimientos: 223 Registrado: 23-December 12 Desde: Honduras Miembro No.: 416,867 Pais: ![]() ![]() |
G920W8 Quitar Cuenta Samsung Firmware en el telefono: PDA: G920W8VLU5CPI4 Aclaro que en modo de descarga no lo hace porque aun chimera no tiene actualizado en ingeniería y por eso hay que usar uno para hacer la operación: Proceso: 1. Descargar G920W8_COMBINATION_OYA_FA50_G920W8VLU5API1_FACTORY Combinacion G920w8 2. Flashear el teléfono 3. El teléfono se iniciará en el menú de combinación y abrirá la comunicación adb 4. Utilice la opción Restablecer FRP / bloqueo de reactivación 5. Una vez terminado haga una borrado manual del menú del teléfono que marca la depuración del usb y el desbloqueo del OEM 6. Flash con la última versión de firmware Si no ve la opción de desbloqueo de OEM después de realizar el proceso Reiniciar FRP / Bloqueo de reactivación, abra una ventana de cmd de Windows y ejecute los siguientes comandos: 1- adb devices 2- adb shell netcfg 3- adb shell content insert --uri content: // settings / secure --bind name: s: user_setup_complete --bind value: s: 1 [Reset FRP/Reactivation lock started] Selected model: SM-G920W8 Checking firmware image... Present. Flashing firmware image... Flashing firmware image. Flashing firmware... Waiting for download mode. Connecting. Reading PIT. Flashing image. Restarting phone. To complete FRP/Reactivation Reset goto "Backup and reset" and select "Factory data reset". Succeeded. Finished successfully. Finished at local time: [07.05.17 17:17:19] WorkID: 23313978 Intente hacer que apareciera la opción unlock OEM y me tiró este error C:\Program Files (x86)\Minimal ADB and Fastboot>adb shell content insert --uri content: // settings / secure --bind name: s: user_setup_complete --bind value: s: 1 /system/csc/customer.xml can't open file usage: adb shell content [subcommand] [options] usage: adb shell content insert --uri <URI> [--user <USER_ID>] --bind <BINDING> [--bind <BINDING>...] <URI> a content provider URI. <BINDING> binds a typed value to a column and is formatted: <COLUMN_NAME>:<TYPE>:<COLUMN_VALUE> where: <TYPE> specifies data type such as: b - boolean, s - string, i - integer, l - long, f - float, d - double Note: Omit the value for passing an empty string, e.g column:s: Example: # Add "new_setting" secure setting with value "new_value". adb shell content insert --uri content://settings/secure --bind name:s:new_setting --bind value:s:new_value usage: adb shell content update --uri <URI> [--user <USER_ID>] [--where <WHERE>] <WHERE> is a SQL style where clause in quotes (You have to escape single quotes - see example below). Example: # Change "new_setting" secure setting to "newer_value". adb shell content update --uri content://settings/secure --bind value:s:newer_value --where "name='new_setting'" usage: adb shell content delete --uri <URI> [--user <USER_ID>] --bind <BINDING> [--bind <BINDING>...] [--where <WHERE>] Example: # Remove "new_setting" secure setting. adb shell content delete --uri content://settings/secure --where "name='new_setting'" usage: adb shell content query --uri <URI> [--user <USER_ID>] [--projection <PROJECTION>] [--where <WHERE>] [--sort <SORT_ORDER>] <PROJECTION> is a list of colon separated column names and is formatted: <COLUMN_NAME>[:<COLUMN_NAME>...] <SORT_ORDER> is the order in which rows in the result should be sorted. Example: # Select "name" and "value" columns from secure settings where "name" is equal to "new_setting" and sort the result by name in ascending order. adb shell content query --uri content://settings/secure --projection name:value --where "name='new_setting'" --sort "name ASC" usage: adb shell content call --uri <URI> --method <METHOD> [--arg <ARG>] [--extra <BINDING> ...] <METHOD> is the name of a provider-defined method <ARG> is an optional string argument <BINDING> is like --bind above, typed data of the form <KEY>:{b,s,i,l,f,d}:<VAL> usage: adb shell content read --uri <URI> [--user <USER_ID>] Example: # cat default ringtone to a file, then pull to host adb shell 'content read --uri content://settings/system/ringtone > /mnt/sdcard/tmp.ogg' && adb pull /mnt/sdcard/tmp.ogg [ERROR] Unsupported argument: // Espero me ayudes, gracias. -------------------- Wetscomgsm.com
#FueraJOH |
|
|
A continuacion 1 usuario(s) le Agradece(n) a neogun93 por su Colaboracion: JDURAN13 |
![]()
Publicado:
#3
|
|
![]() Colaborador del Clan ![]() ![]() Grupo: Miembros Mensajes: 415 Agradecimientos: 710 Registrado: 20-December 11 Desde: san salvador Miembro No.: 287,171 Pais: ![]() ![]() |
con este tutorial resolvi este problema yo espero a alguien le sea útil
https://www.youtube.com/watch?v=Hs9OvUBmWWM -------------------- CLAN GSM MAS QUE UN FORUM ES UNA HERRAMIENTA MUY IMPORTANTE.[color="#0000FF"][/color] |
|
|
A continuacion 1 usuario(s) le Agradece(n) a melvogsm por su Colaboracion: Yun13squ1 |
![]()
Publicado:
#4
|
|
Colaborador del Clan ![]() ![]() Grupo: Miembros Mensajes: 363 Agradecimientos: 422 Registrado: 3-December 12 Desde: Buenos Aires Miembro No.: 410,779 ![]() |
Intente hacer que apareciera la opción unlock OEM y me tiró este error C:\Program Files (x86)\Minimal ADB and Fastboot>adb shell content insert --uri content: // settings / secure --bind name: s: user_setup_complete --bind value: s: 1 /system/csc/customer.xml can't open file usage: adb shell content [subcommand] [options] usage: adb shell content insert --uri <URI> [--user <USER_ID>] --bind <BINDING> [--bind <BINDING>...] <URI> a content provider URI. <BINDING> binds a typed value to a column and is formatted: <COLUMN_NAME>:<TYPE>:<COLUMN_VALUE> where: <TYPE> specifies data type such as: b - boolean, s - string, i - integer, l - long, f - float, d - double Note: Omit the value for passing an empty string, e.g column:s: Example: # Add "new_setting" secure setting with value "new_value". adb shell content insert --uri content://settings/secure --bind name:s:new_setting --bind value:s:new_value usage: adb shell content update --uri <URI> [--user <USER_ID>] [--where <WHERE>] <WHERE> is a SQL style where clause in quotes (You have to escape single quotes - see example below). Example: # Change "new_setting" secure setting to "newer_value". adb shell content update --uri content://settings/secure --bind value:s:newer_value --where "name='new_setting'" usage: adb shell content delete --uri <URI> [--user <USER_ID>] --bind <BINDING> [--bind <BINDING>...] [--where <WHERE>] Example: # Remove "new_setting" secure setting. adb shell content delete --uri content://settings/secure --where "name='new_setting'" usage: adb shell content query --uri <URI> [--user <USER_ID>] [--projection <PROJECTION>] [--where <WHERE>] [--sort <SORT_ORDER>] <PROJECTION> is a list of colon separated column names and is formatted: <COLUMN_NAME>[:<COLUMN_NAME>...] <SORT_ORDER> is the order in which rows in the result should be sorted. Example: # Select "name" and "value" columns from secure settings where "name" is equal to "new_setting" and sort the result by name in ascending order. adb shell content query --uri content://settings/secure --projection name:value --where "name='new_setting'" --sort "name ASC" usage: adb shell content call --uri <URI> --method <METHOD> [--arg <ARG>] [--extra <BINDING> ...] <METHOD> is the name of a provider-defined method <ARG> is an optional string argument <BINDING> is like --bind above, typed data of the form <KEY>:{b,s,i,l,f,d}:<VAL> usage: adb shell content read --uri <URI> [--user <USER_ID>] Example: # cat default ringtone to a file, then pull to host adb shell 'content read --uri content://settings/system/ringtone > /mnt/sdcard/tmp.ogg' && adb pull /mnt/sdcard/tmp.ogg [ERROR] Unsupported argument: // Espero me ayudes, gracias. La nueva seguridad que tiene el firmware no deja abrir los comandos. De todas maneras la comunicacion adb se genera con el archivo de combinacion y asi podra quitar la cuenta de samsnung con la opcion que le da chimera |
|
|
![]()
Publicado:
#5
|
|
Miembro del Clan ![]() Grupo: Miembros Mensajes: 209 Agradecimientos: 268 Registrado: 20-February 17 Desde: Santa tecla, la libertad, El Salvador Miembro No.: 927,455 Pais: ![]() ![]() |
Intente hacer que apareciera la opción unlock OEM y me tiró este error C:\Program Files (x86)\Minimal ADB and Fastboot>adb shell content insert --uri content: // settings / secure --bind name: s: user_setup_complete --bind value: s: 1 /system/csc/customer.xml can't open file usage: adb shell content [subcommand] [options] usage: adb shell content insert --uri <URI> [--user <USER_ID>] --bind <BINDING> [--bind <BINDING>...] <URI> a content provider URI. <BINDING> binds a typed value to a column and is formatted: <COLUMN_NAME>:<TYPE>:<COLUMN_VALUE> where: <TYPE> specifies data type such as: b - boolean, s - string, i - integer, l - long, f - float, d - double Note: Omit the value for passing an empty string, e.g column:s: Example: # Add "new_setting" secure setting with value "new_value". adb shell content insert --uri content://settings/secure --bind name:s:new_setting --bind value:s:new_value usage: adb shell content update --uri <URI> [--user <USER_ID>] [--where <WHERE>] <WHERE> is a SQL style where clause in quotes (You have to escape single quotes - see example below). Example: # Change "new_setting" secure setting to "newer_value". adb shell content update --uri content://settings/secure --bind value:s:newer_value --where "name='new_setting'" usage: adb shell content delete --uri <URI> [--user <USER_ID>] --bind <BINDING> [--bind <BINDING>...] [--where <WHERE>] Example: # Remove "new_setting" secure setting. adb shell content delete --uri content://settings/secure --where "name='new_setting'" usage: adb shell content query --uri <URI> [--user <USER_ID>] [--projection <PROJECTION>] [--where <WHERE>] [--sort <SORT_ORDER>] <PROJECTION> is a list of colon separated column names and is formatted: <COLUMN_NAME>[:<COLUMN_NAME>...] <SORT_ORDER> is the order in which rows in the result should be sorted. Example: # Select "name" and "value" columns from secure settings where "name" is equal to "new_setting" and sort the result by name in ascending order. adb shell content query --uri content://settings/secure --projection name:value --where "name='new_setting'" --sort "name ASC" usage: adb shell content call --uri <URI> --method <METHOD> [--arg <ARG>] [--extra <BINDING> ...] <METHOD> is the name of a provider-defined method <ARG> is an optional string argument <BINDING> is like --bind above, typed data of the form <KEY>:{b,s,i,l,f,d}:<VAL> usage: adb shell content read --uri <URI> [--user <USER_ID>] Example: # cat default ringtone to a file, then pull to host adb shell 'content read --uri content://settings/system/ringtone > /mnt/sdcard/tmp.ogg' && adb pull /mnt/sdcard/tmp.ogg [ERROR] Unsupported argument: // Espero me ayudes, gracias. Mi amigo es asi: adb shell content insert --uri content://settings/secure --bind name:s:user_setup_complete --bind value:s:1 |
|
|
![]() ![]() |
Ver Visitas | Fecha y Hora actual: 23rd May 2025 - 03:13 PM |