a little help please - HTC Startrek

hello everyone.
i'm trying to unlock the cid on my phone, i get to step 3 and then i dont know what to do next. which version do i download of itsutils? when i click pdocread the ms dos window appears then something happens on my fone and i click yes on my fone then nothing happens at all, i tried re opening pdocread and it appears for a second on my laptop then goes away. can some one tell me in detail the last steps ? thanks very much

you need to run pdocread in command line mode - click Start menu -> Run...:
cmd
then go to folder where pdocread is and enter:
pdocread
P.S. you need a itsutl050628.zip version of itsutils

thanks for that
i'm now stuck on part 7 i have my unique id, how do i run the program again?
thanks

okay i managed to get to step 10 i have a bin file and when i do step 10 replacing the xxxxx with the name of my bin file i get a destination file cannot be found error. unable to open host/destination file- the system cannot find the file specified.
what am i doing wrong?
thanks

ok managed to do it, i actually did it on the first go lol but no message came up on my fone saying it was done. thanks anyway.

Related

Reverse engineering the HERMES imei-check unlocker

I am trying to capture the unlock of my M3100 to help the forum.
I followed the directions below...
fun_key said:
What you need befor you start:
USBMON (I used the trial): http://www.hhdsoftware.com/usbmon.html
A win 2k/XP computer with admin rights
How to fool the IMEI-CRACK tool:
-Login with the administrator and setup USBMON
-Create with the administrator a user (named wathever you like) with only "user" or "powered user" rights
-Log in with the user you just created (you may have to resetup Active sync with this user; I don't know why but it seems that active sync doesnt setup for all user)
-Right click on the USBMON icon and select "run as"; input the administrator credential and configure the software ready for the capture
-Launch the crack and follow the instruction
And voila ! The dump should be achieved by now
Click to expand...
Click to collapse
I had to create another admin account as the unlock UTIL requires that you use the Admin account. I have been able to RUN USBMON while starting the unlock and it put the M3100 in the white unlock screen but then get an error and the util has shut down.
Any Ideas? I don't mind waiting to unlock so I help th community out...
OK...I think I captured it....The unlocked changes to a different driver type in the middle of the unlock. So I started a new session with the "NEW" device I think I captured it all but what do I do with this file now?
slimsaturn said:
OK...I think I captured it....The unlocked changes to a different driver type in the middle of the unlock. So I started a new session with the "NEW" device I think I captured it all but what do I do with this file now?
Click to expand...
Click to collapse
attach it here
Alright...POF They are too big to attach....Anywhere else I can throw them? If someone tells me how to upload them to the FTP I will do ASAP...Hopefully this is able to help someone. If I did miss the crucial info i am sorry for failing
no problem, i'm sure it will be juicy
Put them here:
ftp://xdaupload:[email protected]/Hermes/
USERNAME: xdaupload
PASSWORD: xda
let me know when the files are uploaded.
OK so I am getting a 530 Permission Denied error. Can i just email them or someone let me know what I am doing wrong
Email them to me.
sexy [email protected] vijay555.com
V
Finally the files are here:
ftp://xda:[email protected]/Hermes/Technical/unlocker-capture.zip
Going to have a look at them right now! will post something later
pof said:
Finally the files are here:
ftp://xda:[email protected]/Hermes/Technical/unlocker-capture.zip
Going to have a look at them right now! will post something later
Click to expand...
Click to collapse
Good Deal...hopefully this helps us
Slimsaturn!! You got it right
This is more or less what the unlocker does, will explain it in another post:
Code:
retuoR
USB> shmsg 8 2 "unlocking..."
USB> rtask a
[COLOR="Red"]Enter Radio Bootloader[/COLOR]
USB> rpass
HTCS-[url=http://wiki.xda-developers.com/index.php?pagename=Hermes_BootLoaderPassword]dyamic password[/url]-HTCE
...
USB> rversion
[COLOR="Red"]0106[/COLOR]
rrbmc x 6D0000 8000
rwdata 4D0000 800
[HTCS]- code, to big to paste here -[HTCE]
retuoR
USB> rtask b
[COLOR="Red"]Enter radio Image
AT-Command interpeter ready[/COLOR]
[email protected]=0,1,22051978
[email protected]=0,2,22051978
[email protected]=0,4,22051978
[email protected]=0,8,22051978
[email protected]=0,16,22051978
[email protected]=0,32,22051978
AT
retuoR
USB> shmsg 8 2 " done"
USB> task 8
Is that from what I sent you
slimsaturn, yes this has been taken from the files you posted (Thanks!).
Here is the process explained, if you don't understand anything check the wiki bootloader page for a better explanation.
Code:
retuoR
Returns from radio bootloader to normal bootloader, probably here because the capture was not started at the very begining of the unlocker process
Code:
USB> shmsg 8 2 "unlocking..."
USB> rtask a
[COLOR="Red"]Enter Radio Bootloader[/COLOR]
Shows "unlocking..." on hermes screen, enters radio bootloader
Code:
USB> rpass
HTCS-[url=http://wiki.xda-developers.com/index.php?pagename=Hermes_BootLoaderPassword]dyamic password[/url]-HTCE
Sends "rpass \r" (mind the space between rpass and \r), then sends "HTCS" + the password + the CRC of the password as bytes + "HTCE".
This authenticates to the radio bootloader (to be able to use the rrbmc command later), the password is dynamic (but the method to generate it is known) and sent encapsulated on a HTCS+password+CRC+HTCE block.
It should either return "T " for succes, or "F " for failure (encapsulated in the HTCSHTCE block), in the capture it returns "T".
Code:
USB> rversion
[COLOR="Red"]0106[/COLOR]
returns radio version encapsulated in HTCS HTCE block.
Code:
rrbmc x 6D0000 8000
Read back 32768 bytes (0x8000) of memory content from address 6D0000 and save the data to a file named "x".
@slimsaturn: do you have a file named "x" on your computer? can you send it too? if not, can you try to "undelete" it with some tool...?
Code:
rwdata 4D0000 800
[HTCS]+(2048 bytes of code, to big to paste here)+(4 bytes crc)+[HTCE]
This writes 2048 bytes (0x800) of data to address 4D0000, the data is sent encapsulated on HTCSHTCE block as well. I guess this does the CID unlocking.
These 2048 bytes are on the attachment, if anyone wants to look at (hint: compare it with extracted radios using an hex editor).
Code:
retuoR
USB> rtask b
[COLOR="Red"]Enter radio Image
AT-Command interpeter ready[/COLOR]
Returns from radio bootloader to normal bootloader, then enters the AT command interpreter to talk to GSM AT cmd interface.
Code:
[email protected]=0,1,22051978
[email protected]=0,2,22051978
[email protected]=0,4,22051978
[email protected]=0,8,22051978
[email protected]=0,16,22051978
[email protected]=0,32,22051978
This enters the same sim unlock code to all locking facilities (2,4,8,16,32). The code here is 22051978, I guess this code is calculated from what has been previously read by rrbmc command. Will be a different code on every device. Weird that it doesn't get the locked facility first, it just tries all them.
Code:
retuoR
USB> shmsg 8 2 " done"
USB> task 8
This exits from the AT command interpreter, shows "done" on the Hermes screen and reboots the device.
Now I'm going to try the 'rrbmc' command on my hermes and see what is read from there... I've also found that the content written to device by rwdata has some strings in common on GSM.nb (radio) extracted from NBH update, so it's part of the radio.
pof said:
@slimsaturn: do you have a file named "x" on your computer? can you send it too? if not, can you try to "undelete" it with some tool...?
Click to expand...
Click to collapse
Sure...I will check my recycling BIN tonight. If I can't find it there do you have utility that I can use to search my PC to try to locate it?
It will not be in the recycle bin, it will be either on the folder you run the unlocker from, or on the c:\temp c:\windows\temp
The exact size of the file is 32768 bytes, it is named "x" (without extension).
If the unlocker has removed the file (most probably) then it will be removed (but not in the recycle bin!) so you will need to use some software to undelete removed files, I don't know any but google may help.
Pof, I just tried running the unlocker with file i/o monitoring, and didn't see it produce a file called X (or anything else that looked like a likely candidate)
Maybe we can do a before and after dump of the radio patch - it'll probably be using a similar idea to the Universal unlocker if it's overwriting the radio.
V
pof said:
It will not be in the recycle bin, it will be either on the folder you run the unlocker from, or on the c:\temp c:\windows\temp
The exact size of the file is 32768 bytes, it is named "x" (without extension).
If the unlocker has removed the file (most probably) then it will be removed (but not in the recycle bin!) so you will need to use some software to undelete removed files, I don't know any but google may help.
Click to expand...
Click to collapse
Alright I will check tonight. I am guessing this is the missing link to fully understand what happens.
help needed
I need the help from someone who hasn't unlocked their phone yet and is willing to pay imei-check the 20GBP: I need to compare two regions of the radio before and after running the unlocker.
These are the steps to follow:
1) Disable activesync on your computer by right click on activesync icon -> connection settings -> uncheck "allow USB connections".
2) Put your device in BootLoader mode
3) Connect device to computer using USB cable.
4) Download TryBootloader.exe and run it.
5) TryBootloader fails most times you run it with one of these errors:
"Could not enter bootloader mode" or "SetCommState failed Could not open device " you need to reset your device and put it in bootloader mode again, and keep trying until you get this (usually no more than 5 or 6 tries):
Code:
USB>info 3
password ~:0T4~~000~X~000
Entered advanced bootloader
rtask a
rtask a
Enter Radio Bootloader
rinfo
rpass
Retval:
T
Entered radio bootloader
6) Once TryBootloader successfully authenticates you, open mtty.exe and select "USB" port and click "OK", this time you will not get the usual "USB>" prompt because you will already be in radio bootloader, but this should give you an authenticated command line in radio bootloader where you have all commands enabled.
7) Start HHD USBMonitor.
8) File -> New session -> USB Monitor -> Select USB device where your phone is connected -> Check "request view" -> Finish
9) In the upper part there are two tabs: basic and complete. Click on "Complete".
10) Type these commands in mtty window (do not copy paste, type them!) please note that you will not get any output (echo) on the screen when typing because you are on radio bootloader:
Code:
[b]rrbmc a 6D0000 8000[/b]
You will see a lot of garbage in the mtty screen, don't worry... when it finishes, type the next command:
[b]rrbmc b 4D0000 800[/b]
You will see a lot of garbage in the mtty screen again, don't worry... when it finisheds, close mtty.
11) you should see all the USB traffic output on USB monitor window.
12) click on Edit -> Export and Save as type "ANSI Text files".
13) Save the file and zip it. Name it "dump-before-unlock.zip"
14) Enable USB connections on ActiveSync again, softreset your Hermes and make sure activesync icon is "green" again.
15) Run the imei check unlocker as normal, following their instructions.
16) Once your phone is unlocked, repeat steps 1 to 13 but this time name the file "dump-after-unlock.zip"
17) Post a comment here and attach the two files, if they are too big upload them to xda-developers ftp.
After that we'll have everything to start working on a free unlocker
PS: I am traveling from Spain to Germany tomorrow and will be 1 week "away" without internet connection, I hope someone will have uploaded the files when I come back!!!
Awesome on the Stick
slimsaturn said:
I am trying to capture the unlock of my M3100 to help the forum.
I followed the directions below...
I had to create another admin account as the unlock UTIL requires that you use the Admin account. I have been able to RUN USBMON while starting the unlock and it put the M3100 in the white unlock screen but then get an error and the util has shut down.
Any Ideas? I don't mind waiting to unlock so I help th community out...
Click to expand...
Click to collapse
Humm, interesting, when I tried it didn't required the admin rights so far. I tried this a quite long time ago, I may have forgot something or they may have updated there util.
@pof: You were talking about CID unlocking. I don't think that the IMEI tool is still able to make the tytn Super CID. I have used it about 2 months ago and my device is far from being super CID . Slimsaturn, could you please give us the CID of your device in order to check what really happen down there?
EDIT: I found the exe program when I tested the dump. There is now an updated version of the .exe on there website. I guess that it could be interesting to test differents version of the tool, in order to better understand what it realy does and how it does it.
I upload here the older version, it can maybe interest someone. I ll give more tries with the newest version, if it is able to handle my radio version.
nice work
my £20 donation is sitting here waiting for you guys!!!!!!!!!!
anything i can do to help?

Application unlock for HTC Monet (Virgin Lobster 700tv)

Been trying everything on the Internet and managed to make some headway with Monet (Virgin Lobster 700tv) unlock (this might work for Meteor/C700 as well).
1. Firstly you need to get rid of the 'registry security policy' lock.
Download cert install sp.zip:
[see attachment]
a. copy "SP_AllowCertificateInstall.cab" to the root of Monet memory or card
b. Use file explorer on monet to navigate to file. Click to run. Should run ok.
c. Unzip "SDA_ApplicationUnlock.zip" on PC and run "SDA_ApplicationUnlock.exe" whilst Monet is connected via activesync
2. Copy registry editor onto Monet. I used PHM, but others should work. Note install PHM loader on PC whilst monet is connected via activesync. It might install correctly on Monet, it might not. This does not matter. Just navigate on your PC to Program Files\phm and find the .exe file and copy to root of Monet memory or card.
Also nice free remote registry editor here (works from PC whilst phone is connected via activesync):
http://www.breaksoft.com/Blog/Utilities/2005/1/Mobile_Registry_Editor.aspx
Excellent 'free' combined file explorer and registry editor (perhaps for later - after app. unlock) SGS:
http://www.handango.com/PlatformPro...925777&Ntt=registry&productId=195244&R=195244
3. Using phm (or the registry app you like) change the four keys specified in this guide (you might find the above process has already reset 1001 and 101b:
http://wiki.spv-developers.com/HTC_Application_Unlock_Guide
They are:
Under HKEY_LOCAL_MACHINE\Security\Policies\Policies:
a. Change the DWORD named "1001" to 1 (could originally be 2)
b. Change the DWORD named "1005" to 40 (could originally be 16)
c. HKEY_LOCAL_MACHINE\Security\Policies\Policies\0000 1017 = 128 or 16 (before) 144 (after)
d. HKEY_LOCAL_MACHINE\Security\Policies\Policies\0000 101b = 1 (this key might not exist, if so, create it).
4. Restart
5. HOORAY. Now your phone is fully application unlocked.
-----the following procedure is to SIM Unlock, this currently does not work. Possibly spv-services will be updated at some time to work with the Monet---->
6. Now download spv_services:
http://www.spv-developers.com/forum/showthread.php?t=236
a. copy the cert.cab file to you Monet. Select and run using File explorer. it should run fine.
b. Next step. Run SPV_services from PC whilst phone still connected via Activesync. Should unlock ..... however I get checksum error....
Will investigate. Anyone have any luck please say. At least we can now get the phone app.unlocked.
------------------------->
Note: I have read that the phone might again become app.locked if you do a hard reset. If this is the case, just follow the above again.
rgds
colonel said:
(...)
b. Next step. Run SPV_services from PC whilst phone still connected via Activesync. Should unlock ..... however I get checksum error....
(...)
Click to expand...
Click to collapse
So this thread should not be named Full unlock for HTC Monet :>
apparently wen i tell spv services to use simlock tool. it freezes at a blue screen trying to load a php.. this is after i input AGREE into the box..
it opens fine b4 that.. am i doing anything wrong?
bongmaster said:
apparently wen i tell spv services to use simlock tool. it freezes at a blue screen trying to load a php.. this is after i input AGREE into the box..
it opens fine b4 that.. am i doing anything wrong?
Click to expand...
Click to collapse
SPV-Services needs to access the internet.
A php is an active type of web page.
It would appear that there is something blocking it from access the internet. Most probably a firewall on your PC, either the internal windows one, or a 3rd party package you have installed. You need to check this.
If its for the Monet I wouldn't bother anyhow as SPV-Services can not currently SIMunlock this phone.
rgds
colonel said:
SPV-Services needs to access the internet.
A php is an active type of web page.
It would appear that there is something blocking it from access the internet. Most probably a firewall on your PC, either the internal windows one, or a 3rd party package you have installed. You need to check this.
If its for the Monet I wouldn't bother anyhow as SPV-Services can not currently SIMunlock this phone.
rgds
Click to expand...
Click to collapse
1st thing i checked was the firewall..
i know wat a php is i run a phpbb forum and yea it is a Monet (lobster 700)..
shame ( i really need to unlock the networks on it ) i have an O2 sim and wen i put it in it askes for a network unlock code.. if only i had that code.. any idea how to obtain it?
the only way currently is to use virgin or a commercial service
If you put at least £30 of talk time on your virgin account, they will send you the unlock code for free.
Otherwise search google or this forum for a commercial unlocking service.
rgds
colonel said:
1. Firstly you need to get rid of the 'registry security policy' lock.
Download cert install sp.zip:
http://www.spv-developers.com/forum/showthread.php?t=425
Click to expand...
Click to collapse
Hi, I have a question. I would like to try it but the link above shows: Invalid Thread specified. If you followed a valid link, please notify the administrator :-(
burticek said:
Hi, I have a question. I would like to try it but the link above shows: Invalid Thread specified. If you followed a valid link, please notify the administrator :-(
Click to expand...
Click to collapse
Edit: Never mind. I have found it ;-)
Virgin Lobster
I have followed all the instructions
I get an error when running the sim lock to as follows:
Encrypted checksum not found
I then use a vodafone sime and get Network is locked. PLease input unlock code.
Any ideas?
SteveW
classicxda said:
I have followed all the instructions
I get an error when running the sim lock to as follows:
Encrypted checksum not found
I then use a vodafone sime and get Network is locked. PLease input unlock code.
Any ideas?
SteveW
Click to expand...
Click to collapse
simunlock is not working yet on the monet.
this procedure only app. unlocks
rgds
c.
Lobster unlock
What would it cost to do this?
Cheers
SteveW
just phone virgin if yu have a lobster. they require £30 of airtime to be purchased before they give you the code
Application Unlock for HTC Monet
Hi colonel
I have been trying in vain to do an application unlock on my Lobster 700tv. I have managed to install and run the "SP_AllowCertificateInstall.cab" which went ok. The "SDA_ApplicationUnlock.exe" also ran ok. However, running PHM required a copy to be placed on the Monet which I did. Attempting to run the "setup.exe", gave the following message:
"ALERT: Setup is Not a Valid Windows CE Application"
Because of this, I attempted to change the registry keys using "Mobile Registry Editor.exe" which seemed to do the job. However, applications still wont work (I'm trying to install TomTom Navigator 6).
I have since managed to load and run "MobileRegistryEditor.exe" on my phone without problems but I still cannot get TomTom Navigator 6 to run, although it loads onto the storage card ok.
Please can you help?
Regards,
leadweight
leadweight said:
Hi colonel
I have been trying in vain to do an application unlock on my Lobster 700tv. I have managed to install and run the "SP_AllowCertificateInstall.cab" which went ok. The "SDA_ApplicationUnlock.exe" also ran ok. However, running PHM required a copy to be placed on the Monet which I did. Attempting to run the "setup.exe", gave the following message:
"ALERT: Setup is Not a Valid Windows CE Application"
Because of this, I attempted to change the registry keys using "Mobile Registry Editor.exe" which seemed to do the job. However, applications still wont work (I'm trying to install TomTom Navigator 6).
I have since managed to load and run "MobileRegistryEditor.exe" on my phone without problems but I still cannot get TomTom Navigator 6 to run, although it loads onto the storage card ok.
Please can you help?
Regards,
leadweight
Click to expand...
Click to collapse
I also have been trying to unlock my Lobby to no avail.
Used a couple of reg editors but when u change the values the phone comes back "Unable to perform this operation".
I also used the HTC unlocker which came back with the same message.
Lobster headache
Hi bocsta
I had problems to start with but I had failed to read colonel's instructions correctly. I couldn't get PHM to run on my phone so I tried some of colonel's other suggestions. I found that "SGS Explorer" did load ok and I used its registry editor to change the registry keys as listed. I am assuming that my phone is now unlocked but TomTom Navigator 6 will not run.
Can someone please help before I throw my lobster back in the sea?
Regads .....
leadweight said:
Hi bocsta
I had problems to start with but I had failed to read colonel's instructions correctly. I couldn't get PHM to run on my phone so I tried some of colonel's other suggestions. I found that "SGS Explorer" did load ok and I used its registry editor to change the registry keys as listed. I am assuming that my phone is now unlocked but TomTom Navigator 6 will not run.
Can someone please help before I throw my lobster back in the sea?
Regads .....
Click to expand...
Click to collapse
Colonels zip file comes nack as not a valid archive ?
Where can I find the first file in his list being : SP_AllowCertificateInstall.cab ???
Find File
bocsta said:
Colonels zip file comes nack as not a valid archive ?
Where can I find the first file in his list being : SP_AllowCertificateInstall.cab ???
Click to expand...
Click to collapse
The file you require is "cert install sp.zip"
You can get it by clicking on colonels attached files link on the bottom left of his list.
Regards
leadweight said:
The file you require is "cert install sp.zip"
You can get it by clicking on colonels attached files link on the bottom left of his list.
Regards
Click to expand...
Click to collapse
Have you tried downloading it recently The zip file says it is not a valid archive or is damaged ?
bocsta said:
Have you tried downloading it recently The zip file says it is not a valid archive or is damaged ?
Click to expand...
Click to collapse
I have just tried it again and it downloaded ok. I'm not sure why you have had problems - keep trying as it could be just a glitch.
Regards ...
leadweight said:
I have just tried it again and it downloaded ok. I'm not sure why you have had problems - keep trying as it could be just a glitch.
Regards ...
Click to expand...
Click to collapse
Yes it dowmloads OK. I just cant unzip it. Can you try to unzip it please ?
If it fails and you still have the Zip file that you unzipped originally cann you please PM it to me ?
Thanks

Can't Get Wm6 On Qtek 8500

Tried everything in all the threads, 2 different registy editors, paid imei-check £20!! for cid unlock, which unlocked an un-locked a sim un-locked phone. registry editor settings don't appear to stick, when i run pdocread.exe the black box appears then dis-appears 1 second later!! everytime i try update get 5% in then 270 error. SDA_ApplicationUnlock.exe fails!! It just ain't having it!! phone is a new from expansys, computer is running xp pro. i've done everything in the way decribed. any help would be great.
vo1968 said:
when i run pdocread.exe the black box appears then dis-appears 1 second later
Click to expand...
Click to collapse
You MUST run pdocread via Command Line. To launch command line you have to click on Start->Run->enter cmd.
Then move to folder where pdocread.exe located using cd command. In example: C:\>cd D:\itsutils\
thanks for that, i will try that tomorrow.
thanks Erofich, but it still ain't having it. the dosbox does display but when i run commands all i get is errors. error ITGetStoreMgrList, system cannot find file, invalid signature, WARNING could not find default device etc etc. I have phone activsynced, the itsutl as described, i even payed imei-check for cid unlock, which i ran & was "successful"!!!! still get error 270 on rom update. i've looked though all the threads again. i have flashed spv e100, xda, xda exec & mda compact 3 in the past, none have give me as much grief as this. ANYONE HELP??????
vo1968 said:
...the dosbox does display...
Click to expand...
Click to collapse
Dosbox? oO You have to run pdocread via Command Line (cmd.exe) and not a DosBox
And yes, you MUST make an application unlock before running any part of itsutils, search this StarTrek forum for that thread.
thanks, sorry i meant command line, like you said. got this error:
C:\Documents and Settings\vo>build\pdocread.exe
Copying C:\Documents and Settings\vo\build\itsutils.dll to WCE:\windows\itsutils
.dll
Could not update itsutils.dll to the current version, maybe it is inuse?
try restarting your device, or restart activesync
tried resetting & restarting, guess what? same issue. but it does appear to be getting nearer to running your rom, which everybody else is raving about. many thanks.
have you app unlocked your device?
Download regeditSTG2 which is digitally signed: http://4pda.ru/forum/attach/387522/regeditSTG2.zip
Then install it and change some registry values:
HKEY_LOCAL_MACHINE\Security\Policies\Policies\00001001 = 2
-> change to 1
HKEY_LOCAL_MACHINE\Security\Policies\Policies\00001005 = 16
-> change to 40
HKEY_LOCAL_MACHINE\Security\Policies\Policies\00001017 = 128
-> change to 144
HKEY_LOCAL_MACHINE \Security\Policies\Policies
-> create new key "0000101a": Dword = 1
HKEY_LOCAL_MACHINE \Security\Policies\Policies
-> create new key "0000101b": Dword = 1"
Click to expand...
Click to collapse
cheers. do i run that in the phone or the computer? i'll do it tomorrow, given up for today! sorry to be a total noob!
vo1968 said:
cheers. do i run that in the phone or the computer? i'll do it tomorrow, given up for today! sorry to be a total noob!
Click to expand...
Click to collapse
You must install regedit STG2 to smartphone and edit registry values via smartphone
Simply search for regeditSTG2 in Start(may be Accessories) after installing and run it
THANK YOU VERY MUCH. it has been a long week but wm6 is installed. couldn't have done it without you. thanks again.

Please install CSMG B2C Client Tool" "Select tool ->B2C Client setup menu error

Please install CSMG B2C Client Tool" "Select tool ->B2C Client setup menu error
hello, im new on rooting my lg optimus l9, have root my other divices before like the htc wildfire s, huawei u8150 htc my touch 4g. I was rooting the p769 v-10g version using the new root from cmahendra but when i reach the part that i have to create a home server and than flashing the kdz using UpTestEX_mod2_marwin.exe i get the message when trying to update: Please install CSMG B2C Client Tool" "Select tool ->B2C Client setup menu. I don"t know what to do can someone help me please.
cehatro said:
hello, im new on rooting my lg optimus l9, have root my other divices before like the htc wildfire s, huawei u8150 htc my touch 4g. I was rooting the p769 v-10g version using the new root from cmahendra but when i reach the part that i have to create a home server and than flashing the kdz using UpTestEX_mod2_marwin.exe i get the message when trying to update: Please install CSMG B2C Client Tool" "Select tool ->B2C Client setup menu. I don"t know what to do can someone help me please.
Click to expand...
Click to collapse
Just do exactly what it says. In the app go through the menus at the top of the app window and find the B2C Client setup. Run it.
i fixed the problem in my case i had to delete the lg folder thanks to someone in the forum, and then i when to tool to make the program reinstall that and it worked
please help
cehatro said:
i fixed the problem in my case i had to delete the lg folder thanks to someone in the forum, and then i when to tool to make the program reinstall that and it worked
Click to expand...
Click to collapse
Can you please detail all the steps you took. i'm stuck here.:crying:
"I was having similar problems a while ago. Delete all the flash stuff and extract rootflash folder to C:\Rootflash I was trying with the flash stuff in one folder and then the https folder in another and I kept getting the problem you describe. After you've done this go to C:\Programdata and delete the LG folder completely. Restart. Start small server from C:\Rootflash\https as administrator. Start the flashing program again. Tools>Install b2capp. After this it should go as planned" -tablechair
I QUOTED WHAT TABLECHAIR DID AND IT HELPED ME ADVANCE IN THE ROOTING PROCESS AFTER THAT FOLLOW THE NEXT STEP OF CMAHENDRAS ONE THING FOR SURE ONCE YOU DELETE THAT FOLDER ITS GOING TO REAPEAR ONCE AGAIN WHEN YOU PRESS TOOLS>INSTALL B2CAPP WHICH IS GOING TO INSTALL SOME STUFF THAT WASNT THERE BEFORE AND BECAUSE OF THE YOU ARE UNABLE TO ADVANCE TO INSTALL THE KDZ FILE.
ONCE YOU ARE ABLE TO ADVANCE AND FOLLOW THE STEPS OF FLASHING THE KDZ AS IN THE PICTURE OF THE TUTORIAL FROM CMAHENDRA YOU WILL SEE A NEW WINDOW WHERE THE LG UPDATE TOOL IS GOING TO "DOWNLOAD FROM THE SERVER " YOU ARE GOING TO OPEN C:\ProgramData\LGMOBILEAX\Phone ONCE YOU SEE THAT THERES SEVERAL BIN FILES OF DIFFERENT NUMBERS SHOWING UP AND YOU SEE THE BIN(6) THAT IS THE ONE THAT YOU DOWNLOADED YOU SIMPLE COPY THE DOWNLOADED BIN AND PASTE IT THERE A WINDOW WILL SHOW UP IF YOU WANT TO CONTINUE TO REPLACE THE ONE THAT IS IN THERE ONE IT IS REPLACED JUST SIT AND RELAX AND WAIT UNTIL THE PROGRAM FINISHES THE PROCESS AND LET IT REBOOT THE PHONE AND WAIT UNTIL IT REACHES 100%.
got it working after an hour of torture.. started praying to God... nd it worked thanks for the info.. hope it helps people who get stuck at this step and search it online...
your welcome its good that it worked for you as well, its thanks to tablechair that helped me in this portion of the process of rooting where i was stuck. enjoy your rooted for as i am
this is kinda where im stuck i guess i can't even get small server to install at all i try to do the run it and it says not found
There is no installer for shttps just right click the exe and run as admin.
I'm having the same problem. Could someone please elaborate on the steps they took to get through this?
Thanks!
Tablechair said:
There is no installer for shttps just right click the exe and run as admin.
Click to expand...
Click to collapse
i dont see the exe besides "uninst".
If you are trying to find the exe file it should be under
RootFlash >> shttps >> http
where http is the name of the application (it will show up as an '.exe' if you have setting to view file extensions on)
JustinRawr said:
i dont see the exe besides "uninst".
Click to expand...
Click to collapse
Something got messed up when you extracted the archive. Download and extract again.
Another fix for this problem:
Change the server root folder of shttps to the correct directory. If you have the http.exe in D:\RootFlash\shttps then your correct server root directory is:
D:\RootFlash\shttps\www\
If this directory is wrong, the LG Tool can't find the necessary files on the HTTP Server and will abort the flashing process.
Protomartyr said:
If you are trying to find the exe file it should be under
RootFlash >> shttps >> http
where http is the name of the application (it will show up as an '.exe' if you have setting to view file extensions on)
Click to expand...
Click to collapse
Your anitvirus is blocking the program and quarantining it. You need to temporarily disable antivirua so it will allow the program to be extracted.trust me i was wondering the same thing for almost an hour.
Virusbetax said:
Your anitvirus is blocking the program and quarantining it. You need to temporarily disable antivirua so it will allow the program to be extracted.trust me i was wondering the same thing for almost an hour.
Click to expand...
Click to collapse
+1 good. Even I Suggested this someone before. Many pals these days going in wrong directions instead of checking basic things.
INSTALLING B2C OR ANYTHING SUCH CRAP IS NOT REQUIRED. NOT EVEN RUNNING WINDOWS ENBLER. I added it just for satisfaction of few.
Not only pc antivirus, If there is LOOKOUT anti-virus in phone, u need to uninstall or disable it also.
Sent from my LG-P765 using xda app-developers app
Virusbetax said:
Your anitvirus is blocking the program and quarantining it. You need to temporarily disable antivirua so it will allow the program to be extracted.trust me i was wondering the same thing for almost an hour.
Click to expand...
Click to collapse
Ah that was the problem! Thanks! And thanks to all those with your suggestion's as well :victory:
Just wanted to say I'm officially rooted now! Thanks everyone!
good thing it worked for everyone to root the phone everyone has to give credit to tablechair that originally helped me to resolve my problem on installing the kdz file
Help!
When i try to upgrade test on the test tool it tells me to install the csmg b2c client tool. when i go to the setup it tells me its complete but when i try it again it says it again. it goes in like a loop and idk what to do please help!

screen stream mirroring error not enough storage available to process this command

ok so im trying to make screen stream mirroring work and i havent been able too. i downloaded the startup tool for non rooted devices . I followed the instructions and when I run the windows batch file the command prompt window says not enough storage available to process this command . I googled that to see if I could find a solution and it said to do this :
To do this follow the steps below:
1. Click on Start > Run > regedit & press Enter
2. Find this key name HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\LanmanServer\Parameters
3. Locate IRPStackSize
4. If this value does not exist Right Click on Parameters key and Click on New > Dword Value and type in IRPStackSize under the name.
5. The name of the value must be exactly (combination of uppercase and lowercase letters) the same as what I have above.
6. Right Click on the IRPStackSize and click on Modify
7. Select Decimal enter a value higher than 15(Maximum Value is 50 decimal) and Click Ok (i changed my value to 50)
8. You can close the registry editor and restart your computer.
that didnt work and it seems to be the only solution out there any ideas on how to make this work . im running android marshmelon 6 so i shouldnt even have to do that... but i havent manage to make the app work thats why i am trying this .... if any one can help me to make the app work one way or another i would appreciate itr . nb: I am kinda new at this so try to explain it so that is easy to understand thanks

Categories

Resources