Related
Is there instructions on creating a post-flash (or hard reset) install script? I'd like to have it run the cingular WAP cab, and maybe a couple others. I think I've been all over, but haven't seen anything...
Thanks!
Also - does anyone have a package or cab for camera 3.3???
Hi Matt... there are a couple of options...
First off, you could go the route that Faria does in his kitchen - effectively an Extended ROM folder under Windows. When the ROM install has finished and you've done the screen align, it runs the Extended ROM contents - just like the customisations you get in most operator ROMs. The advantage of doing it from a subfolder under Windows is that it works for G4 users as well as G3.
The other alternative is to actually flash your Extended ROM (this is what I've done, as mine is G3).
With the right files in Windows and Windows\Startup (CheckAutoRun.exe and CheckAutoRun.lnk respectively) and the registry entries set up for the appropriate location (I can tell you what these need to be), it will run no problem.
Is this what you're looking for? Faria also has a nice couple of utils that run during customisation and let you choose which operator's settings (GPRS and MMS) you wish to install. I guess these just run the appropriate CAB file based on your choice.
I am happy to help you set this up if it would be of assistance, having spent the last couple of days trying to get all this stuff up and running.
JoelC said:
Hi Matt... there are a couple of options...
First off, you could go the route that Faria does in his kitchen - effectively an Extended ROM folder under Windows. When the ROM install has finished and you've done the screen align, it runs the Extended ROM contents - just like the customisations you get in most operator ROMs. The advantage of doing it from a subfolder under Windows is that it works for G4 users as well as G3.
The other alternative is to actually flash your Extended ROM (this is what I've done, as mine is G3).
With the right files in Windows and Windows\Startup (CheckAutoRun.exe and CheckAutoRun.lnk respectively) and the registry entries set up for the appropriate location (I can tell you what these need to be), it will run no problem.
Is this what you're looking for? Faria also has a nice couple of utils that run during customisation and let you choose which operator's settings (GPRS and MMS) you wish to install. I guess these just run the appropriate CAB file based on your choice.
I am happy to help you set this up if it would be of assistance, having spent the last couple of days trying to get all this stuff up and running.
Click to expand...
Click to collapse
It sounds like your first point is what I was looking for - but up till now I've avoided adding / manipulating the extended rom to prevent issues related to it's use. I guess I'll have to cross that bridge sooner than later!
Is there a "howto" anywhere on it? I'd like to add the option for users to select post installation packages to run, in a nice and "foolproof" way - such as themes, WAP cabs, or whatever. Kinda like "drop your post install cabs in this folder" and it'll go ahead and add them during the rom build, then execute the install after flashing.
Thanks!
mattk_r said:
It sounds like your first point is what I was looking for - but up till now I've avoided adding / manipulating the extended rom to prevent issues related to it's use. I guess I'll have to cross that bridge sooner than later!
Is there a "howto" anywhere on it? I'd like to add the option for users to select post installation packages to run, in a nice and "foolproof" way - such as themes, WAP cabs, or whatever. Kinda like "drop your post install cabs in this folder" and it'll go ahead and add them during the rom build, then execute the install after flashing.
Thanks!
Click to expand...
Click to collapse
search lol i'll try and dig it up for you since i should probably do the same thing
try this of course editing it to where you want it to point:
Code:
[HKEY_LOCAL_MACHINE\Comm]
"AutoRunCFG"="\\Extended_ROM\\config.txt"
"AutoRun"="\\Extended_ROM\\autorun.exe"
notyourdaddy said:
search lol i'll try and dig it up for you since i should probably do the same thing
try this of course editing it to where you want it to point:
Code:
[HKEY_LOCAL_MACHINE\Comm]
"AutoRunCFG"="\\Extended_ROM\\config.txt"
"AutoRun"="\\Extended_ROM\\autorun.exe"
Click to expand...
Click to collapse
I just found this link that has an extended rom in it. It makes a lot of sense, especially the txt file that directs the installation and then initiates a reset. Getting warmer!
http://forum.xda-developers.com/showthread.php?t=309922
So here's what I'm thinking - just initial thoughts:
Have a folder with the base applications that are used every time like AutoRun.exe.
The user places the cab(s) in the "add files to ext rom" folder.
They run an exe that reads the directory file contents, verifies file type, copies the files to the extended rom folder, and displays the list. I'd write it in VB, since I'm most comfortable with file system operations in that language...
They change the list based on the order they want them installed using up and down arrows to sort priority.
The click OK, and it creates the config.txt file, including all necessary commands such as reset and whatnot.
That way when they build, it's all good to go.
Any thoughts?
Slightly off topic but does anyone have a .CAB for TomTom6 (or know how to edit/make one) that doesn't require user input during the installation?
I am not looking for a hacked version of TomTom, just how to prevent it asking me where to install. .CABs that run from the Extended ROM can't ask for user input or it will crash the extended ROM installation as we know; I just don't know how to edit the ttn.cab to stop it asking.
Thanks
Andy
Hi Matt,
It does sound like the first option is the best - it's also the only way to get G4 compatibility. I think your idea to write a VB app is a good one - let the user choose which CABs to install to ExtRom, but I think u need to be very clear what you want to achieve. As this `ExtRom` is not actually in the proper extended Rom, but just a folder under Windows, you gain nothing really by installing programs from here, best just keeping it for operator specific settings and such.
The other issue with extended Rom installations, of any type, is that the config file must run to completion. if you put in cab files that require user input, the install will fail (at least from a proper extRom, maybe ok in this scenario, I don't know); likewise cabs that require or initiate a soft reset will cause an ExtRom install to crash. So, this sorts of limits what cabs can be used. mine puts in personal reg settings; no operator settings as I use wifi not gprs or mms.
Also - and I hope I'm not out of line here, or misunderstanding you - Faria has something that does exactly what u need in his fake ExtRom... u cld always ask him nicely for use of it, or r u looking forward to the coding?
My only other thought is the extra support burden a complex fake extrom scenario would generate, especially if ppl don't understand its purpose and stick stuff in that causes problems...
I hope this has made some sense - past my bedtime and I'm knackered LOL. Just my 2 cents, y'know?
Good work and all the best
JoelC said:
Hi Matt,
It does sound like the first option is the best - it's also the only way to get G4 compatibility. I think your idea to write a VB app is a good one - let the user choose which CABs to install to ExtRom, but I think u need to be very clear what you want to achieve. As this `ExtRom` is not actually in the proper extended Rom, but just a folder under Windows, you gain nothing really by installing programs from here, best just keeping it for operator specific settings and such.
The other issue with extended Rom installations, of any type, is that the config file must run to completion. if you put in cab files that require user input, the install will fail (at least from a proper extRom, maybe ok in this scenario, I don't know); likewise cabs that require or initiate a soft reset will cause an ExtRom install to crash. So, this sorts of limits what cabs can be used. mine puts in personal reg settings; no operator settings as I use wifi not gprs or mms.
Also - and I hope I'm not out of line here, or misunderstanding you - Faria has something that does exactly what u need in his fake ExtRom... u cld always ask him nicely for use of it, or r u looking forward to the coding?
My only other thought is the extra support burden a complex fake extrom scenario would generate, especially if ppl don't understand its purpose and stick stuff in that causes problems...
I hope this has made some sense - past my bedtime and I'm knackered LOL. Just my 2 cents, y'know?
Good work and all the best
Click to expand...
Click to collapse
That's really good info, because I'm climbing the learning curve as fast as I can here to get a good grasp on what the extended rom is, as well as how to use it. I appreciate the conditional warnings... better to know ahead of time than find out following a problem.
I'd rather use the true extended rom (as I understand it anyway), so I don't loose any additional space for the BuildOS programs. That is, assuming the extended rom is a seperate memory location than the base...
In another thread, someone is going to post that tool. I'm really interested in how it works.
If I can get all the concepts together, I hope to get a solid tool that will improve functionality in the ROM, without adding complexity or trouble... and I greatly appreciate the help!
Interesting thread...guys, you just gave me some new ideas.
Before that...there's one thing that's bothering me...
Can we use ExtendedRom on a G4 or not...lol I thought not, until me an Boto made a clean one from a G4 ExtRom and when Boto flashed it it worked , and he has a G4. Why we always say that we don't use an Extended Rom for G4 users ?
Normaly, a G4 should/would brick when flashing IPL/SPL not Extended Rom, am I right ?
We are shrinking the OS space to integrate features of the ExtendedRom in order to all people use it but is it that true ?
Ok, now back to my idea .. I want that in my next rom to include an extended rom, of course and make it that way so when you first start your PDA, it will act like when installing windows on the PC , asking you which apps or what options you want to use. I think i can manage to do that...still the question remains ...will G4 users be able to use it ?
Sorry for the delay writing back... I've been over in the G4 subforum trying to find out if they can flash Extended Rom. Some ppl have reported success using Faria's tutorial. Hopefully this is the case - what u said about IPL/SPL flashing is right, this seems to be a real problem, but if u can flash a radio-only Rom, why not Extended Rom?
What did u and Boto flash onto his G4? Blank Extrom or a cooked one?
Perhaps what we need is a guinea pig to try this out for us...!
JoelC said:
Sorry for the delay writing back... I've been over in the G4 subforum trying to find out if they can flash Extended Rom. Some ppl have reported success using Faria's tutorial. Hopefully this is the case - what u said about IPL/SPL flashing is right, this seems to be a real problem, but if u can flash a radio-only Rom, why not Extended Rom?
What did u and Boto flash onto his G4? Blank Extrom or a cooked one?
Perhaps what we need is a guinea pig to try this out for us...!
Click to expand...
Click to collapse
I took the Ext Rom from the Wizard Love Rom and i edited the config.txt and deleted cabs ...that's it
Well, if it flashed OK... sounds like it might be usable after all But tell me, is Boto's G4 CID locked or unlocked? It's all very uncertain, but some of the G4 posts lead me to believe this may make a difference
ADB100 said:
Slightly off topic but does anyone have a .CAB for TomTom6 (or know how to edit/make one) that doesn't require user input during the installation?
I am not looking for a hacked version of TomTom, just how to prevent it asking me where to install. .CABs that run from the Extended ROM can't ask for user input or it will crash the extended ROM installation as we know; I just don't know how to edit the ttn.cab to stop it asking.
Thanks
Andy
Click to expand...
Click to collapse
All I did for TomTom is install as normal and then copy the Navigator directory and My Documents\TomTomto my storage card where the maps, postcodes etc. are located. After any ROM upgrade all I need to do is create a shortcut in the start menu pointing at \Storage Card\Navigator\TomTom Navigator.exe No user input needed other than to pair the bluetooth gps and define a serial port.Hope this helps, it has worked for me after every change in ROM which has been quite a lot recently.
wizzzard said:
All I did for TomTom is install as normal and then copy the Navigator directory and My Documents\TomTomto my storage card where the maps, postcodes etc. are located. After any ROM upgrade all I need to do is create a shortcut in the start menu pointing at \Storage Card\Navigator\TomTom Navigator.exe No user input needed other than to pair the bluetooth gps and define a serial port.Hope this helps, it has worked for me after every change in ROM which has been quite a lot recently.
Click to expand...
Click to collapse
Thanks for that but it isn't what I was really after.... I am just trying to automate everything. I have flashed my ROM that many times recently and going through the install of TomTom each time is a bit of a pain. I have got a couple of .CABs in the Extended ROM OK and these work fine, I just thought it would be nice if I could get TomTom in there as well.
Andy
I didn't want this to turn into a "how-to" thread, but I'm still scratching for hard info on the extended rom, and as many questions out there, it might be a good one to clarify some details...
As I understand it now, there's two forms of "extended ROM":
1. The true extended rom "similar to the radio ROM"
There is some "trigger" that runs the contents of the extended rom, such as AutoRun.exe?
2. The 'psuedo' extended rom that is basically a post install script to run cabs.
The contents of the folder under windows are run from a trigger that resides in the startup folder - similar to a runonce in Windows on first boot?
Does this sound close?
Also, where does the 'true' extended rom reside? Does it use the portion of memory reserved for the OS, or is there another portion just for it? (so if by adding applications to the extended rom, your available storage memory will remain unchanged - less the installed application?)
I'm presuming then by the 'psuedo' extended rom, that it does consume ROM space, but simplifies post-flash cab installations - assuming you follow the rules...
From what I see, by using the 'psuedo' ER, you waste space by keeping the installation files in addition to the installed application files.
If I'm wasting space and time by asking these questions and you know of a good extended rom tutorial, please direct me to it. I have spend some time tonight searching, but a definitive guide still eludes me... Thanks!
Sorry, coming into this thread late, but you have seen this thread, right?
http://forum.xda-developers.com/showthread.php?p=968417
While it may not directly answer some of the questions, the tools and info in the tutorial may shed some light on this subject (or give you a direction to start digging further).
mfrazzz said:
Sorry, coming into this thread late, but you have seen this thread, right?
http://forum.xda-developers.com/showthread.php?p=968417
While it may not directly answer some of the questions, the tools and info in the tutorial may shed some light on this subject (or give you a direction to start digging further).
Click to expand...
Click to collapse
OMG, I'm getting senile... I came across this months ago, but at that point didn't know what I was looking at... and didn't see it just now in any stickies... thanks man.
mattk_r said:
OMG, I'm getting senile... I came across this months ago, but at that point didn't know what I was looking at... and didn't see it just now in any stickies... thanks man.
Click to expand...
Click to collapse
Yeah, never figured out why that one was never made a sticky. I just know to go look at Faria's sig and it (and a few other good links) are in there
So i purchased my Fuze on Monday, and its my first WM device.
Overall its a great device and i like it more than my iPhone.
Ive been recently trying to customize it and ive downloaded nice TF3D themes, and done some registry editting to change the sliding sound.
What i want to know is if there is another way to make the Fuze run and perform alot faster than how it runs out of the Box.
I did some of the performance TWEAKS that i found on a Touch Pro thread. and that worked. But is their anything else that you guys would recommend? Maybe deleting unused programs? or idk.
I dont really like, that there is some Lag when switching thru the tabs in TF3d, and the long waits for opening programs.
Mind you, that i dont want to go through the effort of installing a new ROM. Mainly because of the fact that i cant seem to find a perfectly good, tutorial on how to do this.
Thanks
1. Get rid of the bloat by doing a hard reset and then doing a soft reset as soon as you "press the screen to use the device"
Frees up a mega crap-load of memory and you dont have to deal with stupid software ATT tries to sell you.
2. Install Advanced Config 3.3
Increase system memory, enable HSDPA and some other features I cant remember)
3. Install Sushi's Diamond TF3D Config
You can edit TF3D all you want (tabs, programs,order,ect..)
1. Get rid of the bloat by doing a hard reset and then doing a soft reset as soon as you "press the screen to use the device"
Frees up a mega crap-load of memory and you dont have to deal with stupid software ATT tries to sell you.
I dont think i can do this anymore since i already turned on the phone, and i didnt get to do that when i FIRST booted it up...or is this still possible now?
2. Install Advanced Config 3.3
Increase system memory, enable HSDPA and some other features I cant remember)
I installed advanced config, and did some of the tweaks on another thread, but how do i "increase system memory" and wat would HSDPA do to my phones overall speed? or is that just internet speed?
3. Install Sushi's Diamond TF3D Config
You can edit TF3D all you want (tabs, programs,order,ect..)
This is how i installed custom TF3D themes
Alucard_11 said:
1. Get rid of the bloat by doing a hard reset and then doing a soft reset as soon as you "press the screen to use the device"
Frees up a mega crap-load of memory and you dont have to deal with stupid software ATT tries to sell you.
I dont think i can do this anymore since i already turned on the phone, and i didnt get to do that when i FIRST booted it up...or is this still possible now?
2. Install Advanced Config 3.3
Increase system memory, enable HSDPA and some other features I cant remember)
I installed advanced config, and did some of the tweaks on another thread, but how do i "increase system memory" and wat would HSDPA do to my phones overall speed? or is that just internet speed?
3. Install Sushi's Diamond TF3D Config
You can edit TF3D all you want (tabs, programs,order,ect..)
Click to expand...
Click to collapse
This is how i installed custom TF3D themes [/QUOTE]
1. You can hard reset and do it at that point.
2. HSDPA will not increase overall speed but it will improve internet.
Ok...having a slight problem finding what I'm looking for, but it looks like it might have been touched upon here, WITHOUT an answer for what I'm looking for.
1. Get rid of the bloat by doing a hard reset and then doing a soft reset as soon as you "press the screen to use the device"
Frees up a mega crap-load of memory and you dont have to deal with stupid software ATT tries to sell you.
Click to expand...
Click to collapse
Having had many different PPC phones, I knew from the getgo not to allow the customization to run. The problem with this is, the TF3D application is NOT installed before the customization, but is actually bundled WITH the customization.
I contacted HTC and AT&T about getting the software seperately...needless to say, sorry, we can't help you...reset and install the customization!!
So, what I am looking for, is the TF3D software for the phone, or someway to unlock it from the phone (if possible)?
pghguy1989 said:
Ok...having a slight problem finding what I'm looking for, but it looks like it might have been touched upon here, WITHOUT an answer for what I'm looking for.
Having had many different PPC phones, I knew from the getgo not to allow the customization to run. The problem with this is, the TF3D application is NOT installed before the customization, but is actually bundled WITH the customization.
I contacted HTC and AT&T about getting the software seperately...needless to say, sorry, we can't help you...reset and install the customization!!
So, what I am looking for, is the TF3D software for the phone, or someway to unlock it from the phone (if possible)?
Click to expand...
Click to collapse
TF3D is called manilla, search for it!
pghguy1989 said:
Ok...having a slight problem finding what I'm looking for, but it looks like it might have been touched upon here, WITHOUT an answer for what I'm looking for.
Having had many different PPC phones, I knew from the getgo not to allow the customization to run. The problem with this is, the TF3D application is NOT installed before the customization, but is actually bundled WITH the customization.
I contacted HTC and AT&T about getting the software seperately...needless to say, sorry, we can't help you...reset and install the customization!!
So, what I am looking for, is the TF3D software for the phone, or someway to unlock it from the phone (if possible)?
Click to expand...
Click to collapse
I posted how to get the TF3D to work without the customization in the Fuze How to skip the bloat thread. You have to open the windows directory with file explorer and install 3 cabs. Cant remember the names at this moment.
Heres the post
Wait...so let me try and understand this...
If one is to do a HARD RESET, and then do a Soft Reset when the "press the screen to use the device" pops up. Then TF3D will not be installed? and will have to be installed separately?!
TF3D is called manilla, search for it!
Click to expand...
Click to collapse
Thank you! This is my first time using TF3D. I've seen the options to install the custom ones on my Tilt, etc, but never felt brave enough to get that in depth with it.
I posted how to get the TF3D to work without the customization in the Fuze How to skip the bloat thread. You have to open the windows directory with file explorer and install 3 cabs. Cant remember the names at this moment.
Heres the post
Click to expand...
Click to collapse
Fantastic! Thank you!
Wait...so let me try and understand this...
If one is to do a HARD RESET, and then do a Soft Reset when the "press the screen to use the device" pops up. Then TF3D will not be installed? and will have to be installed separately?!
Click to expand...
Click to collapse
Correct....because AT&T LOVES to push useless crap on you hoping that you will click on the application and get hooked from there!
Alucard_11 said:
Wait...so let me try and understand this...
If one is to do a HARD RESET, and then do a Soft Reset when the "press the screen to use the device" pops up. Then TF3D will not be installed? and will have to be installed separately?!
Click to expand...
Click to collapse
No you just have to add the reg cab in the windows directory. See my previous post in this thread.
#4 - ADDED MY SOURCE FILES!!!! Just in case u wanna change something
Ok guys...here we go again I try my best to put some of t7he things i like into the same cab...looks huge...but looks nice Some of the best features without touching too much the rom. DISCOVER YOURSELF Is all I can say
1. Random contacts retouch
2. Volume retouch
3. M2D DJ Koa retouch and retouch with Landscape
4. workaround Honeycomb...DJ Koa retouch (best feature is with Josh 21198 v1 ...seems to be fast and skin works better)
5. Keyboard Skin
6. DJ Koa 6.5 Skin (i try to put big menus...but fixing)
7. ...some more tweaks specially on manilla
PS - I will keep adding/fixing things Hugs
Ai ai ai....people complaining about loosing data with this cab. Well..I tested pretty much times with different roms. In any case, please backup ur data before install and please: make sure you have enough space to install and work. And follow the proper steps down. Is easy. And please feedback with ur rom's so I can keep testing.
------------------------------------------
Pre-install:
YOU MUST HAVE A SDCARD!How to install?
1. DISABLE TOUCH OR M2D IN TODAY!
2. RUN CAB
3. DON'T LET IT SLEEP WHILE INSTALL!
More caps
Here some more caps...
Looks nice but how do we install two zip files?
Source files!
Ok my friends!!!! I decided to share with you guys the source files for this so that everything is clear If u feel u can change source.
I used Cabwiz to pack it. I FEEL THE Source!
1. Install cabwiz
2. Create a folder to cabwiz folder and unzip the inf into there
3. Unzip the other zips to same folder
4. Run ..\cabwiz "DJKOA M2D 1.00.4000.1903.inf" /compress
it will generate the CAB.
Cheers
Won't install for me, says installation unsuccessful because of insufficient system privileges.
Phone was connected to pc all through installation so did not got to sleep.
thankssssssssssssssssssssssssss
Good stuff mate but this should be posted in Kaiser software section Anyway, going to have a spin at this.
piplewis said:
Won't install for me, says installation unsuccessful because of insufficient system privileges.
Phone was connected to pc all through installation so did not got to sleep.
Click to expand...
Click to collapse
djkoa, this is probably because of a single file. Ussaully a dll will cause this. Some dll's don't like being installed via cab. They must be manually copied. Another problem could be that piplewis has a dll or file installed that can't be overwriten. Another usaully a dll problem. I've noticed some dll's, once you replace it, you can't replace it again. The work around I found is to rename said dll as .bak which will cause the ROM to use the original again and allowing the file to finally be replaced.
Overwise, great job, only ther suggestion. I thought about making 1 big cab myself, but realized large cab's are difficult to uninstalled. If the user changes 1 small thing, it won't uninstall and will cause them to need to hard reset. Have that problem with NeoTitanium. People change a registry or something and BAM, can't uninstall it.
piplewis said:
Won't install for me, says installation unsuccessful because of insufficient system privileges.
Phone was connected to pc all through installation so did not got to sleep.
Click to expand...
Click to collapse
Same for me. Im really hoping we find a solution to this cuz this looks awesome. I dont have M2D installed though, i dont know if that matters.
drkfngthdragnlrd said:
djkoa, this is probably because of a single file. Ussaully a dll will cause this. Some dll's don't like being installed via cab. They must be manually copied. Another problem could be that piplewis has a dll or file installed that can't be overwriten. Another usaully a dll problem. I've noticed some dll's, once you replace it, you can't replace it again. The work around I found is to rename said dll as .bak which will cause the ROM to use the original again and allowing the file to finally be replaced.
Overwise, great job, only ther suggestion. I thought about making 1 big cab myself, but realized large cab's are difficult to uninstalled. If the user changes 1 small thing, it won't uninstall and will cause them to need to hard reset. Have that problem with NeoTitanium. People change a registry or something and BAM, can't uninstall it.
Click to expand...
Click to collapse
Pretty spot on when it comes to .dll You can make the the cab itself to step by step rename->copy it. Other than that its a ok project, one idea I thought of is whit youre project to make it more customizeable is to take advatage of one if the autoinstallers. And then make a folder whit all the cabs, if you make the whole SJABANG finish to go out of the box you can lateron change its contents aswell as the users themself.
I have 2-3 of theese setups myself whit payed content as stuff from lakeridge, SPB and so on. Making a cab is good training but not wery customizable in the loong run on this project IMO.
raiisak said:
Pretty spot on when it comes to .dll You can make the the cab itself to step by step rename->copy it. Other than that its a ok project, one idea I thought of is whit youre project to make it more customizeable is to take advatage of one if the autoinstallers. And then make a folder whit all the cabs, if you make the whole SJABANG finish to go out of the box you can lateron change its contents aswell as the users themself.
I have 2-3 of theese setups myself whit payed content as stuff from lakeridge, SPB and so on. Making a cab is good training but not wery customizable in the loong run on this project IMO.
Click to expand...
Click to collapse
Another work around for Uninstalling, is to reinstall it first. It's a bit time consuming, but even if WinMo can't uninstall the software when trying to reinstall, it'll still let you reinstall replacing all original files and "Should" let you uninstall finally. A few extra steps and time consuming true, but better than a HArd Reset if it works.
drkfngthdragnlrd said:
Another work around for Uninstalling, is to reinstall it first. It's a bit time consuming, but even if WinMo can't uninstall the software when trying to reinstall, it'll still let you reinstall replacing all original files and "Should" let you uninstall finally. A few extra steps and time consuming true, but better than a HArd Reset if it works.
Click to expand...
Click to collapse
Tricks of the trade ".bak reminds me of something "
Would just be better as seperate installs .cabs.
drkfngthdragnlrd said:
Another work around for Uninstalling, is to reinstall it first. It's a bit time consuming, but even if WinMo can't uninstall the software when trying to reinstall, it'll still let you reinstall replacing all original files and "Should" let you uninstall finally. A few extra steps and time consuming true, but better than a HArd Reset if it works.
Click to expand...
Click to collapse
Getting the perfect setup is wery time consuming, its no secret that the order its installed, register strings overlap eachoter and so on will count for the final result. Reinstalling the cab just to have it removed from installed list doesnt mean you have a good uninstallation. Going from one setup to another whit several cabs when it comes to interface, its almsout inevitable that you going to hard reset to have a fresh installation.
My thought was that its easyer to update the package itself, not update the software on the phone
Ok, I disabled m2d and without soft resetting (after 1st attempt) tried to install again. This time it seems to have installed.
Just restarting now, will let you know.
*Edit*
Yup, seems to have installed fine now.
I can't uninstall......hardreset now
Hi, is it possible you can make this into a .cab.
piplewis said:
Ok, I disabled m2d and without soft resetting (after 1st attempt) tried to install again. This time it seems to have installed.
Just restarting now, will let you know.
Click to expand...
Click to collapse
Hmm, I think I am going to pass on this on for now. All brewed in like this is unlikly that im going to have a good installation IMO. Should be step by step whit whit atleast one reset as far as I could see (HTC HOME),. Good combination, no doubth. But to just gather everything in one big cab im not a fan of. Also I would take advatage of pre-xml in making of this
I dont mean to be critical in a bad way here, its good training and as I sad good combination. I didnt pop the setup.dll as I stopped looking after a minutt, clearly you havent used that much time on this mister Also this installation is expect upon that you have a SD card in phone upon installation (but who doesnt have that, but still a good thing to inform on).
I perform a remove it, run it and after about 5 minutes of it can not remove so I hardreset
after hardreset (keep in storage Kaiser) the entire all data on my storage end are lost, empty storage .... please help me,
So....anyone try it and check
sported said:
I perform a remove it, run it and after about 5 minutes of it can not remove so I hardreset
after hardreset (keep in storage Kaiser) the entire all data on my storage end are lost, empty storage .... please help me,
So....anyone try it and check
Click to expand...
Click to collapse
That is what happens when you hard reset the phone. All the data:contacts, messages, pictures, songs, etc. are lost. You should had used ppm backup (I think that is what its called) to save your contacts and messages on a sd card on computer.
dooyoo222 said:
That is what happens when you hard reset the phone. All the data:contacts, messages, pictures, songs, etc. are lost. You should had used ppm backup (I think that is what its called) to save your contacts and messages on a sd card on computer.
Click to expand...
Click to collapse
You probobly mean PIM backup and he can find it here: http://frifor.com/download/IBI/PIM_BACKUP_V2.8_MONX.CAB
My bad in advance if this question is off topic.
Lets you say you flashed the stock rom [why i don't know] or one of the roms hanging around here. The RUU goes to 100%, you set the screen, the time, you get a peek at the home screen (lookin pretty plain there) only to be told to wait 3 seconds. A couple things run get a little progress indicator and the thing reboots.
Now your home screen is looking different. Couple plugins enabled, others disabled. Been scouring XDA regarding this and only found scant references here or there about setting your thing up to install cabs off an SD card. I'm looking for something more in the neighborhood of having different plugins enabled, possibly settings too.
Anywho if you know of where I can get some reading in about this type of stuff, lemme know.
It's the built-in autorun. There are also many different third party alternatives. A few are in SuperJustKitchen v0.7.
Besides that, I'm trying to decide if this is offtopic or not... Technically it has to do with cooking....
ivanmmj said:
It's the built-in autorun. There are also many different third party alternatives. A few are in SuperJustKitchen v0.7.
Besides that, I'm trying to decide if this is offtopic or not... Technically it has to do with cooking....
Click to expand...
Click to collapse
hehe i'm walking a fine there...
I was wondering who were those guys and what are they doing in my kitchen? Autorun, check autorun, and run cc From what I gathered about those programs is that runcc is like autorun but newer. My guess in using them is setting up some sort of txt file and pointing runcc or autorun to it.
If so what can I put in that txt file, coz I know i can't write something like "uh... dood, I don't want titanium enabled, I want this one enabled with this setting and that setting ticked... and while you're at it can you fiddle with that one over there, and lets throw some cabs on there shall we? they're over here..... you're not done yet, now I want you to monkey with the settings like so... alright now get the hell out of my office!"
If I could I would...
Whatever information you can point me over to would be cool.
Thanks
Dr.Gonz0 said:
hehe i'm walking a fine there...
I was wondering who were those guys and what are they doing in my kitchen? Autorun, check autorun, and run cc From what I gathered about those programs is that runcc is like autorun but newer. My guess in using them is setting up some sort of txt file and pointing runcc or autorun to it.
If so what can I put in that txt file, coz I know i can't write something like "uh... dood, I don't want titanium enabled, I want this one enabled with this setting and that setting ticked... and while you're at it can you fiddle with that one over there, and lets throw some cabs on there shall we? they're over here..... you're not done yet, now I want you to monkey with the settings like so... alright now get the hell out of my office!"
If I could I would...
Whatever information you can point me over to would be cool.
Thanks
Click to expand...
Click to collapse
RunCC is meant as a replacement for Autorun. Autorun just requires a text file while RunCC requires a Lua that points to a text file.
There are a few walkthroughs but nothing concrete on how to create a good autorun file.
Some of the commands are:
The lock screen command (I forget what it is)
EXEC: (Execute the following)
CAB: (Install the following cab)
CPY1: (Copy from this)
CPY2: (Paste to this)
RST: (reset the phone)
In the older Autoruns, to set a theme you'd use:
EXE: along with a program that set the theme
In the newer Autoruns, you can just set it with:
TSK: \Windows\theme.tsk
Unfortunately, neither works with WM6.5.1 so you have to set the theme with an EXT with many files and registry keys.
There are a few other autorun apps that people in xda have made that can do more, like be able to run your own custom config from your SD card if you want every ROM to have certain things automatically configured (as long as all the ROMs support the particular auto-configuration utility you have configured for.)
To tell you the truth, I never bothered much with Autorun unless I had to replace a file that needed to be one version for the rom to load the first time and another after the first time set up was done. Realistically, you can do almost everything with a simple EXT package.
ivanmmj said:
Unfortunately, neither works with WM6.5.1 so you have to set the theme with an EXT with many files and registry keys.
Click to expand...
Click to collapse
Now ain't that a kick in the pants
ivanmmj said:
To tell you the truth, I never bothered much with Autorun unless I had to replace a file that needed to be one version for the rom to load the first time and another after the first time set up was done. Realistically, you can do almost everything with a simple EXT package
Click to expand...
Click to collapse
I was thinking the very same thing. Something's telling me that I need to try out that "Create Ext" button. Maybe throw whatever reg keys I want played with in that file? That would be more simpler than creating an auto run thingie. Hmmm... if that is the case I guess I would to just need to know how to tinker with my home screen and settings from the registry.
Dr.Gonz0 said:
Now ain't that a kick in the pants
I was thinking the very same thing. Something's telling me that I need to try out that "Create Ext" button. Maybe throw whatever reg keys I want played with in that file? That would be more simpler than creating an auto run thingie. Hmmm... if that is the case I guess I would to just need to know how to tinker with my home screen and settings from the registry.
Click to expand...
Click to collapse
The easiest way to learn is to take a CAB that does something you like and converting into a EXT and looking at the registry settings it creates.
ivanmmj said:
The easiest way to learn is to take a CAB that does something you like and converting into a EXT and looking at the registry settings it creates.
Click to expand...
Click to collapse
That definitely helps, as well as using a reg editor to find out what has been done after installing a program then exporting the key to throw in the app.reg file. The real fun part was tracking down basic settings for things like button settings, today items (and their settings), and default theme (boy was that a blast!) Thanks again for clearing up the confusion
Ok, I make this simple and straight to the point, but first a little bit of explanation way i need the following help.
I made a personal stable rom a few months ago, and then i installed Manilla then i got the restart issue. (My Wing keeps restarting if the storage card is in.) And i wanted a very stable ROM for me to use, so i decided to make a better ROM, instead of flashing the same ROM i used before. Well, the rest is pretty explanatory, because everyone Flasher, knows that it is through trial and error that we make a stable ROM, i am almost getting my Stable ROM again. But i need a bit of help that i couldn't fix alone.
(Especial for Tribu, if you read this. Which I know you kind of will if you have the time) 1. I need a HTC Task manager, but i am using build 28232 and as you know ,if you have seen that build, it doesn't have the HTC Task Manager in the up right corner, because the clock is located there, so i would like to HTC Task manager to be Bottom corner like Tribu, did in his SD ROM.
2.My Comm Manager is currently 10 button Comm Manager by Tao a.k.a kaiser Comm Manager (10 Buttons), the letter become extremely small for some reason after a few Soft Reset which i have to do just to make sure if it is working alright. Here's a Pic: http://img688.imageshack.us/i/201006281332100001111a2.png/
When it's supposed to be like this:http://forum.xda-developers.com/attachment.php?attachmentid=45495&d=1185791739
Yes, i did try to re-install it instead of cooking it in. Yes, i did try to raise the size of the font in the Settings. Is there anything i didn't do??
Thank You Alot even if you couldn't fix this problem, but just for taking your time and reading this. =)
Hey. You know me pretty well, lol.
Unfortunately I cannot give you the software I used because I was told not to redistribute the software. But I cannot stop you from unpackaging my ROM and looking through the software that I used
If you search the terms "Task Manager" (without the quotes) I am sure that you'll also find what I used.
I also recommend using build 23545 or higher as it uses a different dll setup than the previous builds. Thus being more stable
Now you can also change the font of your ROMs, for instance, download fonts that you want to use and then rename them to the fonts that I have in THIS cab file.
Hmm, I thanks, I try to learn people if they interest me. But it's quite difficult over the internet. lolz
Hmm is a new software or something? Unpacking ROM, hmmm sounds awesome.. Wish I knew how T_T
Yeah, I'll search up Task Manager in good and see what i come up with =D
I tried build 23545,(Since I really like your work) while building 28232 ROM, yes it's stable, but I assumed that the latest Builds would be catergorized by the ascending number, so I thought 28232 which was the highest build in the Ervius Kitchen would be the most Stable, obivously, latest isn't always the best. Nevertheless, I really am limited with my Wing, because I to rearrange my Phone stuff, so everytime i flash a new ROM, i rearrange which have gotten anoyying by now. I on the edge of getting this one to suit me, but if i get any problems that can only be solved by Re-Flashing i will work on 23545.
Also, where can I find fonts for my Wing?
Thanks alot for reading =D
Well, you can search Google.com for fonts.
But for the latest builds, you can search HERE for the latest build files.
You can use version 0.9 of Ivan's kitchen to unpackage a ROM too.
Ok, ill download Ivan kitchen and check out ur ROM, also, I installed ur Font but my Comm Manager is still messed up, i suppose it is the Comm Manager itself. Perhaps i can see if Tao have a fix for this.
Dude i found the Task manager you have. Dude, if i knew you in real life, i would give you a HUGE hug man.
Thanks again. God Bless!
BeNicePlz said:
Dude i found the Task manager you have. Dude, if i knew you in real life, i would give you a HUGE hug man.
Thanks again. God Bless!
Click to expand...
Click to collapse
Very cool ^>^ lol.
Glad I could help.
BeNicePlz said:
Ok, I make this simple and straight to the point, but first a little bit of explanation way i need the following help.
I made a personal stable rom a few months ago, and then i installed Manilla then i got the restart issue. (My Wing keeps restarting if the storage card is in.)
I used to have the same problem with the storage card. I found that if you pop out the storage card until the 1st splash screen goes away, then put it back in while the phone is still booting, it's loads as normal. Wait to long and apps on the card won't load correctly and the icons won't show up.
Click to expand...
Click to collapse
Yeah, i figured that too =D, but I would rather sacrifice manilla than having to pop in and out my Storage card ={ I mean, Wing should have A LOT of storage and program memory.... We shouldn't have to deal lack of memory from the wing.