if you dont have adb set up,download this:
mini-adb.zip
it contains adb,fastboot and an md5sums utility
-extract it,place the unzipped folder on the root of your C drive
-open a cmd window(win 7,clock start button,type "command" or "cmd" in search box)
-change to mini-adb directory by typing,or copy/paste in the cmd window:
cd c:\mini-adb you should see your promt change to c:\mini-adb>
-place phone in charge only mode,plug in(im assuming you have rooted via revolutinary and have drivers.if not use revolutioary drivers)
-in cmd,type or copy/paste the bold faced code:
adb devices
-if you get your serial number back,boot to bootloader:
adb reboot bootloader
-check for connectivity
fastboot devices
-if you get a serial number back,check your cid first,in case you want to restore it later
fastboot getvar cid
or
fastboot getvar all (will return other variables as well )
-change CID
fastboot oem writecid 11111111 (eight ones)
-reboot bootloader
fastboot reboot-bootloader
-check CID again
fastboot getvar cid
or
fastboot getvar all
-verify CID=11111111
-reboot
fastboot reboot
heres what the above will look like in your cmd window(red are my inputs):
Microsoft Windows [Version 6.1.7601] Copyright (c) 2009 Microsoft Corporation. All rights reserved. C:\Users\Scott>cd c:\mini-adb c:\mini-adb>adb devices * daemon not running. starting it now on port 5037 * * daemon started successfully * List of devices attached HTxxxxxxxxxx device c:\mini-adb>adb reboot bootloader c:\mini-adb>fastboot devices HTxxxxxxxxxx fastboot c:\mini-adb>fastboot getvar all INFOversion: 0.5 INFOversion-bootloader: 1.27.1100 INFOversion-baseband: N/A INFOversion-cpld: None INFOversion-microp: None INFOversion-main: 3.32.531.14 INFOserialno: HTxxxxxxxxxx INFOimei: xxxxxxxxxxxxxxx INFOproduct: vigor INFOplatform: HBOOT-8260 INFOmodelid: PH9810000 INFOcidnum: T-MOB010 <-this is your stock cid. make note of it INFObattery-status: good INFObattery-voltage: 3950mV INFOpartition-layout: Generic INFOsecurity: off INFObuild-mode: SHIP INFOboot-mode: FASTBOOT INFOcommitno-bootloader: ad3368f2 INFOhbootpreupdate: 11 INFOgencheckpt: 0 all: Done! finished. total time: 0.529s c:\mini-adb>fastboot oem writecid 11111111 ... INFOStart Verify: 0 OKAY [ 0.261s] finished. total time: 0.262s c:\mini-adb>fastboot reboot-bootloader rebooting into bootloader... OKAY [ 0.187s] finished. total time: 0.187s c:\mini-adb>fastboot getvar cid cid: 11111111 finished. total time: 0.003s c:\mini-adb>fastboot reboot rebooting... finished. total time: 0.156s c:\mini-adb>
No comments:
Post a Comment