Does anyone have any ideas on this? I am looking for a way to have my custom ROM boot with the radio off (until I turn it on would do the trick also). My reason ... I turn off the radio, run backups, flash ROM (phone turns on), I get a text message (no contacts yet, so I don't know who its from) and I loose the message once I do a restore.
I will be attempting to write some software to auto-restore the backups also ... This would make flashing a painless process. When you are developing a custom ROM, there is a LOT of flashing.
Thanks.
DJ
Don't select "Delete messages from database" in PIMbackup while restoring.
That is my work-around ... I use SPB Backup on a schedule to backup every day. My work-around is to backup the "missed" messages with PIM Backup, restore my SPB backup, then restore just the "missed" messages with the "Delete messages from database" option selected ... The restore appears to hang, but it does complete if you give it enough time. I prefer SPB Backup because the restore is a LOT faster ... I have about 4500 SMS messages in my phone, and PIM Backup restores them quickly, but takes about 1 second for each one to load in the Messaging app.
Thank you for the feedback.
Try areas like
Code:
HKLM\System\CurrentControlSet\Control\Power\State
phone=0
wireless=0
I think I had these in a provxml and the phone would not start until I went into CommManager and restarted it.
There are flags under this key in subkeys like coldreboot, on and reboot. I am not sure what they need to be set to, if at all, but maybe this will head you in the right direction.
RoryB - Thank you ... I'll give that a try later tonight. I think I tried just setting phone to 0 already ... I'll play around with it and see if I can pull it off.
PS - I added a signature.
Ok ... I tried setting these two values manually in a running ROM using a registry editor ... This did not disable the radio. I am going to export my registry to a file with the radio on, and again with the radio off ... I'll compare these files and find the keys/values I need to set. When I find them, I'll post em here in case anyone else wants this functionality.
Start your device without SIM card after flashing. Do your restore and insert SIM.
OK, I've made a small exe for you, place it in UC script of
your ROM or execute anytime you want. It should disable phone
radio using TAPI interface, just like Comm Manager do (I think)...
the_ozyrys ...
It didn't work ... I mean ... The program turned off the radio, but the text message was already received by the phone. I think I have to remove the carrier settings from the ROM, then install via a CAB after the radio has been turned off.
Klael said:
Start your device without SIM card after flashing. Do your restore and insert SIM.
Click to expand...
Click to collapse
or: lock the sim by a PIN code....after first boot, you have to enter the PIN for the SIM, if you don't, you do not get any service
dj13241 said:
The program turned off the radio, but the text message was already received by the phone.
Click to expand...
Click to collapse
So place it somewhere in registry startup (for example HKCU\Software\HTC\Bootlauncher\Apps) and add a PROVXML entry to delete this value during customization...
This sounds interesting. Would I need to change order of any apps in bootlauncher reg? I'll give it a try. Have a problem sometime with connection setup fighting with UC for screen.
Not sure if you "remove the SIM card" guys realize this ... This is a CDMA phone ... There is no SIM card.
On my device, the Apps key doesn't exist ... Just Services. Can I just create the Apps key? I was thinking something similar to this in the HKLM\init key "Launch##" values. Not sure which number to put it as.
Here is a list of the values in my HKLM\init
Code:
[HKEY_LOCAL_MACHINE\init]
"Depend50"=hex:14,00,1e,00
"Depend20"=hex:0a,00
"Launch10"="shell.exe"
"Depend70"=hex:1e,00
"Launch70"="connmgr.exe"
"Launch50"="shell32.exe"
"Launch4"="sdpready.exe"
"Depend110"=hex:64,00
"Launch110"="tskschedule.exe"
"Depend120"=hex:64,00
"Launch120"="autotimeupdate.exe"
"Depend61"=hex:32,00,3c,00
"Launch61"="ciphase2.exe"
"Depend21"=hex:14,00
"Launch21"="coldinit.exe"
"Depend30"=hex:15,00
"Depend60"=hex:14,00
"Launch60"="services.exe"
"Launch30"="gwes.exe"
"Launch20"="device.exe"
"Launch19"="initvmmap.exe"
"Launch98"="TimeWizard.exe"
Removed - Duplicate post
MODS, can someone delete this post?
Thanks.
[HKEY_LOCAL_MACHINE\Comm]
"AutoRun"="\\Windows\\autorun.exe"
"AutoRunCFG"="\\Windows\\carrier_config.txt"
"AutoRunType"=dword:00000000
"TurnRadioFlag"=dword:00000000
this is a part of my autorun rgu... if I change the turnradioflag key to 1 it shuts it off and keeps it off until I turn it back on
Use the above one if you use Autorun, if you use RunCC then use the below.
[HKEY_LOCAL_MACHINE\Software\HTC\RunCC]
"script"="\\windows\\runcc.lua"
"UIMode"=dword:00000001
"TurnOffRadio"=dword:00000000
"RecoveryType"=dword:00000002
"TodayDelay"=dword:00000000
"ResetDevice"=dword:00000001
"ResetUICountDown"=dword:00000010
Click to expand...
Click to collapse
Change Turnoffradio to 1, then it wont turn radio on, until you turn it on manually!
lllboredlll said:
[HKEY_LOCAL_MACHINE\Comm]
"TurnRadioFlag"=dword:00000000
if I change the turnradioflag key to 1 it shuts it off and keeps it off until I turn it back on
Click to expand...
Click to collapse
I did this, when the phone first boots it gives a cprog is not a valid wm program error message. I went to CommManager and system was in flight mode I selected phone to start. It shows selected, but never connects to service. I checked key and it was set back to 0. Tried reset and still no good. Taking it back to origninal.
Nevermind: there was a corupted setup so cprog did not work. Fixed that. These settings did not stop the radio in my phone.
I changed the TurnRadioFlag value to 1, and the "LOCK:Enabled" line in SDConfig.txt turns the radio off. The problem is, the radio is still turned on before this point, so by the time the radio is turned off, any pending text messages are already received. I even tried setting the ...
Code:
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Power\State]
"Wireless"=dword:00000000
"Phone"=dword:00000000
Something a little different.
Try cooking ROM with cprog.exe called _cprog.exe and use something to rename it after you get started.
accidentially read through this 3d..
i suggest applying these lines in a rgu or app.reg if you use new bepe kitchen:
Code:
[HKEY_LOCAL_MACHINE\Software\Microsoft\RIL]
"LastEquipmentState"=dword:00000001
[HKEY_LOCAL_MACHINE\System\State\Phone]
"Status"=dword:00400030
"Radio Ready State"=dword:00000000
Related
Based of the IIWPO solution initially meant for Wallaby devices (see http://forum.xda-developers.com/viewtopic.php?t=2526), I created a customizable installer for Himalaya:
See the Wiki page on IIWPO
http://wiki.xda-developers.com/wiki/IIWPO
Hopefully IIWPO suprises a lot of thiefs!!!!!
IIWPO has proven that it is also fully functional on Wizard. I guess this means it woll be working on WM5 devices in general.
One remark: Due to the different memory behaviour under WM5 you might notice IIWPO does not send an SMS immediately after you change the onwer-info (ie. for test purposes). But it definitely will when the device is woken up after some time!
I followed every step and it isn't working for me.
I checked every setting after installing and everything is in the right folder / registry.
I rebooted my Wizard several times (poweroff button / pen soft-reset) and it never send an SMS.
WM2005
edsub:
How do you get around the fact that WM2005 no longer has a useful extended rom and config.txt? Do you now install a iiwpo.exe into the \Windows\Start-up folder?
Any ideas on how to hide it successfully the way it used to be in a hidden and locked extended Rom?
M
Anyone has tried it on Kjam?
QuasaR said:
I followed every step and it isn't working for me.
I checked every setting after installing and everything is in the right folder / registry.
I rebooted my Wizard several times (poweroff button / pen soft-reset) and it never send an SMS.
Click to expand...
Click to collapse
I guess you did personalize the platformxxx.reg file (put in your own data, note the phone# needs to be in international format).
If then the registry just contains the correct data, ie YOUR correct name and SOMEONE's phone# (to send to sms to) I cannot imagine it is not working. The SMS should be sent when your device is woken-up (by just pressing power button). Afaik the SMS is not sent when the device is switched on (ie. after pressing power button 5 secs) or a reset.
pneuma said:
Any ideas on how to hide it successfully the way it used to be in a hidden and locked extended Rom?
Click to expand...
Click to collapse
Until there is a decent solution the trick is:
-Backup your OS & radio rom using aWizard tools
-Flash with an 1.5.x ROM using regular procedure (RUU)
-Create your own ExtROM (its writable in this version)
-Restore your backed-up OS & Radio ROM using aWizard tools
Advantage of this is the thief also cannot purge the ExtROM (without upgrading) . . .
slumpolo said:
Anyone has tried it on Kjam?
Click to expand...
Click to collapse
As KJam is a Wizard also there is no reason why it should not work
is it possible to use this tool, but without locking the ExtendenRom and without rom upgrade?
even if it is less safe...I prefer using my Extended Rom for some applications but also prefer not to upgrade my Qteck9100 yet.
So I have put it all in the extended rom, but will this 'Config.txt' and 'Autorun.exe' be invoked on a hard reset when the Extende Rom is not locked...
when installing, should i install it in the extende rom or in the device itself?
thanks for the great tips!
CIAO!
VOODOOS!L
edsub said:
QuasaR said:
I followed every step and it isn't working for me.
I checked every setting after installing and everything is in the right folder / registry.
I rebooted my Wizard several times (poweroff button / pen soft-reset) and it never send an SMS.
Click to expand...
Click to collapse
I guess you did personalize the platformxxx.reg file (put in your own data, note the phone# needs to be in international format).
If then the registry just contains the correct data, ie YOUR correct name and SOMEONE's phone# (to send to sms to) I cannot imagine it is not working. The SMS should be sent when your device is woken-up (by just pressing power button). Afaik the SMS is not sent when the device is switched on (ie. after pressing power button 5 secs) or a reset.
pneuma said:
Any ideas on how to hide it successfully the way it used to be in a hidden and locked extended Rom?
Click to expand...
Click to collapse
Until there is a decent solution the trick is:
-Backup your OS & radio rom using aWizard tools
-Flash with an 1.5.x ROM using regular procedure (RUU)
-Create your own ExtROM (its writable in this version)
-Restore your backed-up OS & Radio ROM using aWizard tools
Advantage of this is the thief also cannot purge the ExtROM (without upgrading) . . .
slumpolo said:
Anyone has tried it on Kjam?
Click to expand...
Click to collapse
As KJam is a Wizard also there is no reason why it should not work
Click to expand...
Click to collapse
I personalized everything but it never sends an SMS so i tried to run the files manually.
When i run the file \Windows\iiwpo_main.exe is sends the SMS immediately.
Any ideas on where it can go wrong ?
I also tried to run the \Windows\iiwpo_start.exe and \Windows\Opstarten\iiwpo_start.exe but that did nothing.
Himalaya + WM2005
edsub:
Referring to your reply, sorry I failed to mention I am using Himalaya and enjoyed the iiwpo up until I upgrade to WM2005, after which the extended rom became a useless memory area for Hima devices and was therefore re-claimed with buzz's DOCtools.
Does the extrom in wizard wm5 still have a purpose? As far as I know the files like config.ini never get called by wm5?
Also, Is the current release a rewrite for WM5 or still the same version since 2003 1st edition?
How can i unnistall IIWPO ? I need real HELP pls
Hi guys
I installed IIWPO in my Qtek9100 (Wizard), followed all steps and it doesnt work.
So I decide to unistall it.
I did it from Revome Programs option and with resco i removed registry key .
Now when i do a soft reset i receive allways a Notification Error Mess : Cannot execute \windows\IIWPO_main.exe
This appears also during phone calls !!!
Apps are not in \windows and no more in \windows\startup, registry key is not there. What can i do more ?
Please I need HELP
Thanks
Jorge
My guess is that non-functioning has to do with localized versions of WM5.
The cab uses hard-coded pathnames (needed by setup.dll, especially during the customisation process)
It is confirmed that un-install issues have to do with a left-behind notification in the notification db.
Use Check Notifications by scarybear software to get rid of all IIWPO notifications OR do a hard reset :wink:
I updated the IIWPO wiki on this
Dear all 818pro(ENG OS)
The reason causing memory card disappear problem is dopod built-in software.(inside Extension Rom)
Only one method to solve, hard reset the PDA but without installed any built-in software as follow:
Right now I hard-reset the PDA, until the password setup, and then the PDA begin install build-in software...soft reset immediately.
If you used above hard-reset method which don't installed any built-in software. You only lost:
1. Smart Dailer
2. Built-in Voice Commander
3. Autoconfig
4. clearvue pdf
I used two days and everything work fine. You may ask why I so sure? Because I noticed the speed of reading memory card is different before which listed below:
1. Before using above mentioned method: When the PDA turn on (In sleeping mode and phone on mode), it need 1-3 seconds to read the memory card. If you installed Today Plug-in Software, you may found that it need 1-3 seconds to detect the memory card.
2. After using above mentioned method: When the PDA turn on, the PDA detect the memory card simultaneously.
As a result, I can assure this method can solved the memory card disappear problem.
Some experience would like to share with all user:
1. I installed all programs in the ROM. If someone installed programs in the memory card, please let me know the result.
2. I can installed back the smart dialer software. Please search this forum to download.
3. When you connected GPRS, a 'Disconnect' button (and Timer) to the Connection List for GPRS is disappeared. You can make registry hack to switch back.
Add a 'Disconnect' button (and Timer) to the Connection List for GPRS
To add a Disconnect button:
HKLM\ControlPanel\Phone\Flags2 = 8 (DWORD decimal)
To add a Disconnect button and a timer display showing how long GRPS is in use for the session:
HKLM\ControlPanel\Phone\Flags2 = 16 (DWORD decimal)
To disable both the Disconnect button and the timer:
HKLM\ControlPanel\Phone\Flags2 = 0 (DWORD decimal)
4. PDA can detect 'Phone Service Provider' automatically. However, when you need GPRS, you need manuel setup. I used 'PEOPLES' which is Hong Kong Service Provider and take as a Example setup:
Go to Setting > Connections > Tap Connections
1. Choose > My ISP - Add a new modem connection
2. You need to enter > a Name (Which name you like) and Select a modem [Cellular Line (GPRS)] > Next
3. Acess point name : Peoples.net > Next
4. Ignore the user name and password. > Finish
Thanks for the Reg Hack!!! Worked perfectly on the Dopod 818Pro!!!!
Thanks!!!
voyager
sas90850 said:
2. I can installed back the smart dialer software. Please search this forum to download.
Click to expand...
Click to collapse
Hi sas90850,
What a good job you've done! Excellent!
I'm wondering whether this topic is the instruction you said (WM5 smart dial)
or you could point out where I can download the smart dialer software and have an installation instruction, thanks.
I've 818Pro and would like to do the same "UPGRADE"... :wink:
Dear all user
you can download the built-in smart dialer software as following link. Make sure you download the "SmartDialing_enable_0915_signed.CAB" only.
http://forum.xda-developers.com/viewtopic.php?t=32458&highlight=smart+dialer
Copy the .cab file to PDA and install. Must soft reset. :wink:
If anyone installed software in the memory card, please post here whether the disappear problem is solved. :?:
sas90850 said:
Dear all user
you can download the built-in smart dialer software as following link. Make sure you download the "SmartDialing_enable_0915_signed.CAB" only.
http://forum.xda-developers.com/viewtopic.php?t=32458&highlight=smart+dialer
Copy the .cab file to PDA and install. Must soft reset. :wink:
If anyone installed software in the memory card, please post here whether the disappear problem is solved. :?:
Click to expand...
Click to collapse
Just to let everyone know that you already have this same file as well as the GPRS disconnect button CAB file in your own Dopod 818Pro's Extended_rom. You can browse and copy files in this hiden folder with GSfinder.
This worked for me also with the jamin. I soft reset after hard resetting and it gave me back rom and fixed the sd issue. Thanks
Edit: After soft resetting my device, the start menu once again doesn't show the correct icons for programs loaded on the sd card?? The programs will open and work but the icons are displayed?
Hi, this method seems to have solved most of my Jamin troubles too! Thanks!
I need just some help to get the GPRS timer: I don't find the registry. Is it in the HKEY_CURRENT USER OR THE HKEY_LOCAL_MACHINE? I found the Control Panel\Phone, but not the "Flags 2" registry that needs changing as described.
Many thanks!
Dear Fidipaldi
You need to add a new registry. Make sure you use DWORD Value. The location is shown below.
Add a 'Disconnect' button (and Timer) to the Connection List for GPRS
1. To add a Disconnect button only:
Go to HKLM\ControlPanel\Phone
Add Name = 'Flags2' :arrow: DWORD Data = 8
2. To add a Disconnect button and a timer display showing how long GRPS is in use for the session:
Go to HKLM\ControlPanel\Phone
Add Name = 'Flags2' :arrow: DWORD Data = 16
3. To disable both the Disconnect button and the timer:
Go to HKLM\ControlPanel\Phone
Add Name = 'Flags2' :arrow: DWORD Data = 0
Dear mikewchandler
Question :After soft resetting my device, the start menu once again doesn't show the correct icons for programs loaded on the sd card?? The programs will open and work but the icons are displayed?
1. Copy the program *.exe file which installed in the SD Card.
2. Use File Explorer:
Go to Windows\Start Menu\Programs :arrow: Paste Shortcut
You will get the programs icon.
Dear SAS,
Many thanks for your help!!
It works great! I also managed to get the smart dialer back. The only application that is missing is Clearview.
So far my Jamin does not seem to crash on a regular basis as it did before. It must be the add on software that made the device crash.
Finally I can enjoy the device. Thanks again!
After 5 days. :lol:
Right now I installed a lot programs both in the ROM and SD Card and didn't find any disappear problem. :lol:
One more thing, I also found that the auto soft-reset seems gone too.
I will keep posting here and let you know the result. :wink:
sas90850 said:
Dear mikewchandler
Question :After soft resetting my device, the start menu once again doesn't show the correct icons for programs loaded on the sd card?? The programs will open and work but the icons are displayed?
1. Copy the program *.exe file which installed in the SD Card.
2. Use File Explorer:
Go to Windows\Start Menu\Programs :arrow: Paste Shortcut
You will get the programs icon.
Click to expand...
Click to collapse
Here's what I usually do on a new device or after a hard reset. I have about 10 progs on my sd card (total commander, tweaks2k2, etc...) and I have created shortcuts to them and placed them in a folder on my sd card. I then copy those and paste them in the /windows/start menu/programs folder and everything works well. I've noticed this quirky behavior on the jamin so far?
I did what you recommended by not installing the ext rom. I'm happy with a quicker device and more rom; however, I'm still having this little issue with the icons not appearing correctly in the start menu? Kind of strange. The white and blue default box is what's showing up (as if there is no shortcut icon) but the progs open just fine? :shock:
which program should we install
After Hard Reset and Review the extended rom,
There are serveral progarms avaliable for install
I just wonder what program from Extended Rom should we normally install in order to make phone become functional as the standard automatic install of extended rom?
Secondly, what each one of them is for? does anybody has information?
Thank you very much
sas90850 said:
After 5 days. :lol:
Right now I installed a lot programs both in the ROM and SD Card and didn't find any disappear problem. :lol:
One more thing, I also found that the auto soft-reset seems gone too.
I will keep posting here and let you know the result. :wink:
Click to expand...
Click to collapse
The SD card problem seems disappear but it still soft resets itself after standby and battery charging for a while.
Khuanchai said:
sas90850 said:
After 5 days. :lol:
Right now I installed a lot programs both in the ROM and SD Card and didn't find any disappear problem. :lol:
One more thing, I also found that the auto soft-reset seems gone too.
I will keep posting here and let you know the result. :wink:
Click to expand...
Click to collapse
The SD card problem seems disappear but it still soft resets itself after standby and battery charging for a while.
Click to expand...
Click to collapse
After 6 days used, I don't have any soft reset problem at all no matter in standby mode, sleeping mode and/or battery charging either the PDA is turn on/off......any condition.:roll:
re: Mike Chandler
Try this....
goto settings, menu and unclick just one of the programs in question. select ok and then checkout the start menu. Should be well again. Then go back and reselect your menu button you unclicked earlier. All is well. I'm not sure if this is a permanent solution or not but it does work.
Mike
mtarro said:
re: Mike Chandler
Try this....
goto settings, menu and unclick just one of the programs in question. select ok and then checkout the start menu. Should be well again. Then go back and reselect your menu button you unclicked earlier. All is well. I'm not sure if this is a permanent solution or not but it does work.
Mike
Click to expand...
Click to collapse
Thanks Yes it worked temporarily and then after a soft reset...same. I've narrowed it down a bit. The progs show fine in the bottom of the start menu (recently run progs) but if I add them to the top part of the start menu, they show fine until a soft reset....then they don't again. What I also noticed is if I copy the .exe and paste it in the start menu it shows fine....the only problem was when I copied the .exe and pasted a shortcut to the .exe. Anyway, I've settled on a fix. A few of the progs that didn't display correctly, I've just added to ilauncher.
Don't spend any more brain power on it for now....it must be something specific to me as others aren't posting problems like this. Thanks again
@mikewchandler
First of all it's nice to see you again on this forum!
To fix your problem try installing Signed_IconsDll.sa.cab from the extended rom. This should fix your problem!
@ALL
Regarding the SD card issue, the problem seems to be originating from the file Signed_SD_Driver.sa.cab. Not installing just this cab will also solve the problem.
I would suggest installing the following cabs as well as these improve system stability or add functionality:
CAB-ConnectionSpeedMax.sa
CAB-Shortcut-MMS1-JAVA5XX-CV-Dopod........
CAB-WapPushSMS
Signed_Disable_ErrorReport.sa
Signed_DisconnectButton_3s.sa
Signed_IconsDLL.sa
Signed_PIE_View_Default.sa
Signed_Prophet_DopodAsia_UA.sa
Signed_Version.sa
SmartDialing_enable_0915_signed
Thanks kta....it's great being here but I'm going to miss the eten community. :?
Thanks for the tips. Yeah, I didn't install the ext rom at all....I should have mentioned that (if I didn't?). Thanks again.
Edit: Where's the best place to get the files off the ext rom? I don't guess I know how to extract the ext rom to copy before hard resetting, soft resetting to keep it from installing. Hope that runon sentence makes sense.? :roll:
Hi there,
I am using the Niki Project Rom v1.0 WM6.1 and when I apply the regedit to hide the SIM contacts, every time I restart or soft reset my Touch Dual the SIM contacts re-appear.
The \key I am changing is:
HKCU->ContrlPanel->Phone->ShowSIM
I change the Value from 1 to 0 and this hides the contacts.
After a reset this value goes back to 1.
Can anyone tell me of a permanent fix for this?
Cheers
gjrober
In your \windows\startup\ folder delete "sddaemon"
It's the thing that's at fault for them always coming back IIRC.
Cheers
Thanks for this response.
What is the function of this file and in deleting it does it have any affect on anything else?
Cheers,
gjrober
To be honest, I have no idea. It's not in a lot of other ROMs, and deleting it when I was using the Niki V1 ROM didn't seem to break anything
If you're worried about it, back up the file to some other folder so you can return it there if something you use breaks - but it certainly didn't seem to do anything when I used that ROM.
You can use Schap Advantage Configuration Tool
I have a t-mobile HD2 and everytime I launch the internet browser (Opera) it brings up this really annoying "Do you want to go online?" warning. This happens whether Opera is launched from the Sense UI or directly from the start menu.
I can not find anything in the registry to remove this. I have also noticed in the \Windows folder that there is a "BrandedBrowser.exe", which seems to be the cause, because if I run it (and Opera is not already running) then it brings up the warning and then launches Opera, however, if I run the OperaL.exe file directly then it doesnt display the warning.
How can I modify the Sense UI so that it launches the OperaL.exe instead of the BrandedBrowser.exe?
Any ideals peeps?
To launch OperaL.exe as the default instead of BrandedBrowser.exe just use a program like total commander to rename Brandedbrowser to brandedbrowser_bkp.exe (just so you have a backup copy should you ever need it), then make a copy of operaL.exe and rename it as BrandedBrowser.exe
Make sure it stays in the windows directory.
I just tried this myself and it worked.
The branding still appears but it doesn't ask me if i want to go online anymore
Thanks very much
I can't seem to do this. I have Total Commander installed but whenever I change the file properties to uncheck System and Read Only, it just reverts back so that I can't rename or delete it.
How do I do this?
DavidC1980 said:
I can't seem to do this. I have Total Commander installed but whenever I change the file properties to uncheck System and Read Only, it just reverts back so that I can't rename or delete it.
How do I do this?
Click to expand...
Click to collapse
Strange. When I did it, I didn't change any of the files properties. I just renamed it. Make sure the browser isn't running in the background. You can close it fully with the task manager. If it is running perhaps you can't edit the file name.
Perfect. I must have had the browser running in the background without realising last time. I've just had another go with the stock File Manager and it's worked a treat
Now.....I just need to find a way of switching off HSDPA (but keeping 3G) switched on in this T-Mobile UK 1.43 ROM
DC
DavidC1980 said:
Perfect. I must have had the browser running in the background without realising last time. I've just had another go with the stock File Manager and it's worked a treat
Now.....I just need to find a way of switching off HSDPA (but keeping 3G) switched on in this T-Mobile UK 1.43 ROM
DC
Click to expand...
Click to collapse
That's the easy part
Go to Settings, Menu, All Settings, Connections, and Advanced Network. It's the 1st option you'll see.
Unfortunately it seems to be missing from this ROM. In advanced settings I have 3 tabs: GPRS (authentication method), CSD Line Type and SMS Service. I think T-Mobile have removed it for some reason.
Is there a registry key I can change?
DavidC1980 said:
I can't seem to do this. I have Total Commander installed but whenever I change the file properties to uncheck System and Read Only, it just reverts back so that I can't rename or delete it.
Click to expand...
Click to collapse
I had the same problem.
I thought it might've been because I was using an old version of Total Commander, so I updated that to the latest one but it still wouldn't work.
To fix the problem I copied the original read only files to my PC desktop, unticked the read only attribute, copied them to my SD card, then moved them from there back into the Windows directory on the phone, and finally changed the file names.
I rebooted the phone to make sure the changes had stuck, and they had.
Much rejoicing was made.
If I can find a way to switch HSDPA off and keep 3G on, and improve general stability I'll be 99.9% happy with the HD2. If only I could update the ROM without voiding the warranty
Come on T-Mobile, hurry up an release a 1.48 ROM!!!!! :
Hello,
My phone has 4 number security code you have to enter when the phone's being unlocked(did in settings, default winmo lock but HTC made an unlocking skin on it).
I've taken out a battery while the phone was on, then turned it back again in 3 hours. I move the unlock image, and as usual dialpad appears asking for security code. I enter as I usually do and it says INVALID CODE. I'm like - WTF? Tried again, nothing. Tried dozens of times, nothing. Reboot doesn't help. Now it even stopped saying INVALID CODE, when you press the unlock button it doesn't do anything.
I had the "lock" feature working fine for weeks.
QUESTION: What to do(without hardreset)? Phone is set to sync when USB connected, Windows Mobile Device Centre says unlock your phone first before sync. I can't do anything, can't make call(i can receive it), can't check messages or anything, i can't unlock it ffs! Help please, any ideas are welcome
you aren't alone,happened to quite a few.
did you recently install swype 3.9?(there are other reasons)
i've not seen anyone get out without hard resetting.
i have miri rom with swype pre installed
maybe there's a way to upload a file to storage card that will change some registry keys? problem will be how to run it
Sallcho said:
i have miri rom with swype pre installed
maybe there's a way to upload a file to storage card that will change some registry keys? problem will be how to run it
Click to expand...
Click to collapse
About the only thing I can think of is if you were able to find a way to put something in the \windows\startup folder that fixed it - but like someone here already said - odds are you're going to have to do a hard-reset.
@
It happened to me awhile back...i tried to find a way but didnt manage to find it, i had to hard reset..