CAB file version issues - Windows Mobile Development and Hacking General

Hi everybody!
(hi doctor nick)
I'm having a few little issues with CAB files on my pda2k.
maybe this should be in the blue angel thread, but it's to do with application development, so i put it here. I also tried the forum search, with no results.
i'm wanting to use all my customised cab files that i made for my XDA2, and use them on my new device, the PDA2K.
all of the cabs work, and all of my applications run.
however, upon installing the cab, a message comes up on my pda and says "the program you have installed may not display properly because it was designed for a previous version of windows mobile software"
i've checked the version nifo in all my .inf files.
i've compared them to newer cab files that don't give me that message.
the inf files look fine.
is this a registry setting perhaps, that i could change?
like i said, all the apps work, i just want to stop it from giving me that warning.
does anyone have any ideas?
thanks !

The warning is just about what it says: You are trying to run older (ie now specifically designed for SE) software.
Noithing to worry about when thing work as supposed.
You can get rid of the message by setting the OS verion inse the CAB files higher (but you need ie. WinCE Cab Manager by OCP Software for that) .

i know there isn't anything to worry about. the apps work.
it's just that for the purpose of creating an SOE, i don't want customers to have to click "ok" everytime they reset their device, all apps must install without prompt from beginning to end.
I have winCE cab manager, and have set the version and build number higher in the inf file, yet i can't seem to get rid of the message.
any other ideas ?

you have to set the lower version number to th version of WinCE youre using now.
Set some 'very high' value to the higher version number
There is another thread on this somewhere . . .thats where I got this info from

yeah, tried that too
i sset my version details like this:
[CEDevice]
ProcessorType=0
UnsupportedPlatforms="JUPITER","HPC"
VersionMin=3.0
VersionMax=10.00
BuildMin=0
BuildMax=100000
still no good.
anyways, i'll keep searching for the related thread. i new there would be such a discussion in here, just a matter of finding it.

I think it was versionMin=4.21
http://forum.xda-developers.com/viewtopic.php?t=15761

M4io said:
I think it was versionMin=4.21
http://forum.xda-developers.com/viewtopic.php?t=15761
Click to expand...
Click to collapse
thanks M4io,
that's the link i was looking for

ok, there seems to be something wrong here.
either that, or i'm doing it wrong (highly unlikely :lol: )hahha.
anyway, i've tried all different versions, i've tried all different build's.nothing. still won't work.
so i downloaded the latest operator settings for my device.
that cab ran no problems, so i extracted the inf, then i copied all the version info from that one, and dumped it into the inf that i'm trying to package. ran the cab on the device, and i still get that error !!
how can that be?
there must be something else in my cab, that governs version conflicts.
anyone

Hi Twinair,
please try to set it as follows:
[CEDevice]
ProcessorType=0
UnsupportedPlatforms="JUPITER","HPC"
VersionMin=3.0
VersionMax=4.21
BuildMin=0
BuildMax=-536870912
buzz

I've tried with the above settings buzz, but it still doesn't work.
does the CEsetup.dll, or setup.dll have anything to do with version control perhaps ?

could be, that you should use your own setup.dll
I really don't know now... I've never made a cab which was not complaining about the older version... (
Looked for it also in internet, but found nothing...
But if you download the trial ver of OCP CabManager, you can unpack cabs for SE and take a look there... my trial period is expired now...
Maybe you can try to use setup.dll out of such cab...
buzz

damn, still not getting anywhere.
i've put in the correct version info, i've used a setup.dll file from a known working cab file, i have the latest full version of cab manager.
i'm fresh out of ideas
back to the drawing board.
if i figure it out, i'll let you know.

This is what MSDN says at
http://msdn.microsoft.com/library/d...dnwm2k3/html/screen_orientation_awareness.asp
Installation Warning Messages
When a legacy application is installed on a Windows Mobile-based Pocket PC capable of screen rotation, the warning message will appear
This dialog is to advise the user that the application they are about to use may not be aware of square screens or screen rotation, and may not display properly in landscape mode. This dialog will only appear if the VersionMin value (which specifies the lowest OS revision number your app supports) file is less than 4.21.
Since setting VersionMin to 4.21 will prevent your application from installing on older Windows Mobile-based Pocket PCs, it is recommend that you disable this warning message by setting the BuildMax value (which is typically unused) equal to the following values:
BuildMax values
0xA0000000 Application supports square screens (240x240 pixels).
0xC0000000 Application supports screen rotation.
0xE0000000 Application supports square screens and screen rotation.
These parameters can be changed by editing the [CEDevice] section of the INF file which cabwiz uses to generate your CAB file.
so
[CEDevice]
VersionMin=4.21
VersionMax=4.99
BuildMax=0xE0000000
Should do the trick[/b]

@Shikra
...perfect man, let me test it... )))
THANX
buzz

GREAT!!! it works!!!
THANX
buzz

Related

HTC Home Today Plugin

Hi,
I’m trying to make the HTC Home Today plug-in on WM5 to work. With many try and a lot of will I was unsuccessful because ROM upgrade was not an option.
After many hours and days, I found out that there is an error when doing installation from the cab file. I was able to intercept the error. I found out that the HTCHome.dll doesn’t register on WM5.
I think there is maybe a reference in the DLL that looks to see witch version of windows mobile it’s on, and if the reference is ok then the file get registered, if not it doesn’t and fails to register.
Here I’m boys and girls, I need good soul that can help us (I say us because there is others that is dreaming) to get a workaround!
I’m at my limit knowledge to hack this DLL that’s why I writing this today.
Regards,
My phone is a HTC TITAN (P4000) with WM5
PS: the problem is not the phone model but the OS version…
Requirements to have this pluging working:
Windows Mobile 6 ( PocketPc).
HTC HomePlug: Today screen plug-in (Displaying Time/messaging notifications/Launcher), allowing quick changes of various options, such as weather, missed calls, sms/email notifications, time/alarm changing & program launcher.
Link to the current file:
http://www.megaupload.com/?d=8ZGSK4EE
http://rapidshare.com/files/36863085/HTC_Touch_Home_Plugin.cab
I didn't have time to look at this and don't know when or if at all I get the time, but if the problem is with the registry the solution should be easy:
Get a reg editor, got to HKLM\Software\Microsoft\Today\Items and manually create a key for the plugin. Check to see how other plugins are listed there and you will know what values to create (key name is what you see in the settings menu).
Other possibility is that the DLL is compiled with WM 6 SDK. Though I have not made many attempts with this it seems files compiled this way are not recognized as valid by earlier OS version.
This might be resolved by tweaking the DLL header.
levenum said:
I didn't have time to look at this and don't know when or if at all I get the time, but if the problem is with the registry the solution should be easy:
Get a reg editor, got to HKLM\Software\Microsoft\Today\Items and manually create a key for the plugin. Check to see how other plugins are listed there and you will know what values to create (key name is what you see in the settings menu).
Other possibility is that the DLL is compiled with WM 6 SDK. Though I have not made many attempts with this it seems files compiled this way are not recognized as valid by earlier OS version.
This might be resolved by tweaking the DLL header.
Click to expand...
Click to collapse
Thank for the reply!
YES i have done the registery edition in the today items and added the accorded strigs.
[HKEY_LOCAL_MACHINE\Software\Microsoft\Today\Items\ HTC Home]
"Enabled"=dword:1
"DLL"="\\Windows\\HTCHome.dll"
"Order"=dword:0
"Flags"=dword:0
"Selectability"=dword:2
"Type"=dword:5
"Options"=dword:0
I think you have a good point with the DLL heathers.
Regards
any news about this?
HTC Touch home plugin
does it work on VGA?
Best regards
Deiota
There is a thread in this exact forum with a link to a working cab for WM5.
ok got it installed only one thing......im in reno nv and all the weather is in france and european places
Tregrad said:
ok got it installed only one thing......im in reno nv and all the weather is in france and european places
Click to expand...
Click to collapse
Have a look around for HTC Home Customizer
colonel00 said:
There is a thread in this exact forum with a link to a working cab for WM5.
Click to expand...
Click to collapse
can you please post a link...
Customization
http://forum.xda-developers.com/showthread.php?t=319308
6 buttoms - WM5
http://forum.xda-developers.com/attachment.php?attachmentid=51162&d=1190200940
thanks mate!
Anybody kind enough to provide a link for HTC Audio Manager for WM6 that is not in rapidshare format?
Thank you.

HTC Home 2.0

Found Kaiser.HTC.Home.v2.0.814.722-schen.cab in the Hermes forum:
http://forum.xda-developers.com/sho...hlight=Kaiser.HTC.Home.v2.0.814.722-schen.cab
Versin 2.0 allows you to add a diffrent number to favorite People (1.5 defaults to the mobile thus you need to create a new contact to use the Office number.).
Well that is the good news, the bad is that I cant get it to work on my BA
It installs well.
Under Start - Settings -Today - Items - It adds a HTC Home Tab.
The tick boxes work fine (fast as well JOKE).
And on the Today screen it adds Nothing.
I have done a old uninstall, new install, wait, softreset, wait.
This is a patched version based on the thread so may be the clean version would work.
So has anybody got Version 2.o to work on a BA ??
That's v 2.0.720719.
2.0.814.722 is here: http://forum.xda-developers.com/showthread.php?t=327646
DANDANA said:
That's v 2.0.720719.
2.0.814.722 is here: http://forum.xda-developers.com/showthread.php?t=327646
Click to expand...
Click to collapse
SOME PICTURES PLEASE!!
I didn't try it and MDAIIIUser said isn't working on BA....yet
It looks the same as 1.5 with aditional options, but i can't get it to work either, i install needed certificates but still nothing
xplode said:
It looks the same as 1.5 with aditional options, but i can't get it to work either, i install needed certificates but still nothing
Click to expand...
Click to collapse
2.0.xxx.xxx work much better than v 1.5....thrust me.
Are you able to get v2.0.7xx.xxx to work?
You can see that v 2.0.8xx.xxx and v 2.0.7xx.xxx and v1.5.xxx.xxx all using DIFFERENT certificate to sign. That is my experimenting on the certificates thing. All work OK with my Hermes. Maybe it is certificate thing...maybe it is other matter that prevent the new version from working correctly for BA. But really I DONT see any reason other than certificate. You can try to sign the dll with other certificates to see if it work or not.
I only patch the dll to enable instalation outsite of windows directory and to fix the brightness shortcut. Other than that nothing. So, this should not be the issue
Congratulation guys WM6 finally arrived for BA and Hima user. I should have hold my thrustworthy Hima longer I dont have to upgrade, BUT Hermes ROCKS, no regret.
Thanks schen for your input, i have tryed al the 2.0.x versions with the same certificates (looked mainly into hermes forums) provided for hermes, but the home settings show in today options and the plugin just does not load. I agree that this is certificate error i will try to sign them with difrend certificates to see what will happen
regards xplode
Edit: I have tryed both 2.0 versions on clean hard resseted rom with both certificates installed and none ot them does not work for some reason, now i will try to sign the dll's with sdk certificate to see the results
Anyone have any luck with Home 2.0 on BA?
Same problem with HTC Plus.
I think the problem is certificate sign.
Just to let you know that this issues is just not with your devices, we are also seeing the same problems with the Apache running Helmi's port of WM6. It shows in settings, but nothing on Today screen. Have tried certs and signing as well.
However, both 2.x versions work fine with the Titan running WM6. My thought was that there were some remnants from the WM6 port that were still using WM5.
maybe you are right, because i signed all files with one certificate and then with another ans it is the same result
If you guys have install the sdkcerts.cab before installing home then I dont think it is certs problem...it is more like device specific security setting problem
Maybe you guys can take a look at the WM5 security...each of the ROM might have different default setting. Some device even dont allow security setting to be change.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnppcgen/html/wmsecurity.asp
I will also try copying the SampleDevPrevCert.pfx to the device and click on it. It will add the root cert to the thrusted certificate store. It may work it may not but very simple and worth a try.
Bottom line, if you try the "No Security" setting which allow all signed or unsigned apps to pass and the HTC Home still not working then I dont have any idea anymore.
Please try....
Out of curiosity why v2 of HTC home working on certain device and rom and not working on others, I have resigned all the dll, exe, and mui files with my own certificate.
Installation note in the Readme file inside the zip.
I am looking for some people to try if the cab work. As soon as 2-3 report still not working I will delete the attachment.
Test it, i couldn't install at all; "installation of ... was unsuccessful"; thanks anyway Schen.
Now installing, will keep you posted in few minutes
the instalation of the cab is unsuccessful (the home cab)
DANDANA said:
Test it, i couldn't install at all; "installation of ... was unsuccessful"; thanks anyway Schen.
Click to expand...
Click to collapse
Same error message for me
schen said:
Out of curiosity why v2 of HTC home working on certain device and rom and not working on others, I have resigned all the dll, exe, and mui files with my own certificate.
Installation note in the Readme file inside the zip.
I am looking for some people to try if the cab work. As soon as 2-3 report still not working I will delete the attachment.
Click to expand...
Click to collapse
I tried 3-4 times, but always installation of HTC Home cab was unsucessfull
Hi Schen,
Thanks for your help with this issue. I can confirm DANDANA's results on my Apache (Helmi's WM6 AKU .7) with no prior version of HTC Home installed. Your cert cab installs OK but the Kaiser.HTC.Home.v2.0.814.722.Resigned-schen.cab fails to install.
I believe this is due to the mui files (from my own experience in trying to unsign/resign them I think the certificate table gets corrupted somehow).
I sent you a PM earlier, but would it be possible to obtain a copy of all of the original HTC Home 2.0.814.722 PE files (prior to any hex editing & re-signing)? Helmi would like to take a look at it since it seems to be an issue with his WM6 ROMs (also affects his AKU .42 release for APAC).
Thanks again!
i have removed flags in cab for the self registering and shared for WmpPluginToday.dll and now it installs but it still does not work
xplode said:
i have removed flags in cab for the self registering and shared for WmpPluginToday.dll and now it installs but it still does not work
Click to expand...
Click to collapse
Yes....I forgot to remove the self registering of the plugin, that is the cause of installation unsuccessfull....Earlier I tested this on my hermes manually coying the files and it work OK.
I have remove the cab. AT least I am convince by now it is not the certs thing.
Luv...got your PM...I will have to look for the original HTCHome.dll if I still have it. As I said before....the hack I did was just to change the default directory (\windows) to (\HTCHome) for the graphics AND change it to call HTCUti1.dll instead of HTCUtill.dll...They are unicode hex editing only. You could hex edit and change "\HTCHome" back to "\Windows" and "HTCUti1" back to "HTCUtill", resign it and everything is back to original. The mui files came unsign. I have to sign the mui files to get it to work for hermes.
In the mean time....the main difference between v 1.5 and v 2.0 is the "PROFILE" Tab...Try to install, disable the "Profile", reset if necessary to see if it work. The attached cab only enable the Home tab by default...if it work, you can enable all other tabs one by oneto see which tab is causing the problem.

'Touch Settings' Program for Vogue (aka Sprint Touch)

First - thank you to Carlos for his hard work on the original version and now for taking the time to update it for those of us using Sprint's touch. I'm starting this as a separate thread since the new beta version will have many issues unrelated to the original versions.
And, unfortunately, I get to start off with my first issue which occurs upon execution of the program.
A few moments after starting the program I get the follow error message...
System.ArgumentException: An error message cannot be displayed because an optional resource assembly containing it cannot be found at Microsoft.AGL.Common.MISC.HandleAr() at System.Drawing.Bitmap._InitFromMemoryStream() at System.Drawing.Bitmap..ctor() at TouchSettings.Form1.load PBpictureFromPath()
Click to expand...
Click to collapse
And then the error message scrolls off the screen without scroll bar for me to see what else it says...
Upon clicking the "OK" button, the program continues to load to the App Launcher screen.
Upon load, the App Launcher screen is empty. The screenshot, icons, path and program title are not populated.
When I click on the empty box where the screenshot should be located I get the same as as before and the program exits.
I can populate the App name and path fields and can also ad an Icon -- but only for one program. When I save and reset however, the app name, path and icons are not retained.
When returning to the program after the first entry, I continue to receive the same error and the App Launcher screen is again blank.
In Media Hub:
First - the screenshot displayed is from the other version of the Touch screens...with the bluegreen icons -- not yellow. I assume you know that, but just wanted to mention it.
The "Sprint Music" fields default to the ATC Audio Manager which, to my understanding, does not come on the Touch. I've already installed AudioManager so the link worked fine -- but I'd suggest defaulting it to Sprint's Java-based Music ap just like the stock set up (less confusion for noobs)
Sprint TV seems to work as expected.
On Demand also worked as expected.
I changed the settings for On Demand to point to \windows\HTCAlbum.exe, however, and upon re-boot I received the following error when trying to run it from the cube:
The file " cannot be opened. Either it is not signed with a trusted certificate, or one of its components cannot be found. If the problem persists, try reinstalling or restoring this file.
Click to expand...
Click to collapse
(and that single quotation mark after the words "The file" is exactly what displays)
Weather appears to display properly. I haven't had a chance to test the auto update feature yet.
On the bright side - the About screen works perfectly. It's just as easy to send Carlos a beer as it was before!
Given that we'll soon have a Vogue forum started I also assume you'll probably want to update the Support Thread to include a link for "Sprint Support"??
Whew. That's all for the first 10 minutes.
THANK YOU CARLOS! Your hard work is appreciated!
My experience is exactly the same on the sprint touch.
Joe
I just wanted to drop in and say thanks for all your work Carlos!
Same problems still having problems with the app loader portion of the settings. The other settings work as they should.
ok well i made custom PNG's for Slingplayer mobile and opera, if anyone needs custom images let me know im makin em. BUt i need the sprint program to implement the images!
the original "Touch Settings" program that you're referring to will work with the Sprint Touch without any problems. You just have to know what you're doing....
Step 1: Download TaskMgr and copy to your phone. Place TaskMgr in the \windows\start menu\programs\ folder of your device.
Step 2: Run the TaskMgr program you just put on your device. Upon opening TaskMgr, a list of running processes will be displayed. You want to terminate the following processes; biotouch.exe, quickdial.exe, mediahubmini.exe and aplauncher.exe. To do this, select each one individually and then tap the "Close" button on the bottom of the screen.
Step 3: Download and install the TouchFlo Alpha cab below.
- 3a: upon successful completion of the installation you will be prompted to "Reset" your device. Click "NO".
4. navigate to the \windows\startup folder and delete any new links that were created.
5. navigate to the \windows\start menu\programs folder and delete "touchflo"
6. Download and install the Touch Settings Cab below. Again, at the completion of the installation it will prompt you to restart your device. SELECT NO!. You are not ready to reset your device just yet.
7. Now that you've killed the 4 processes, installed the touchflo alpha cab and the touch settings cab, we're almost done. Navigate to the \windows\startup folder and delete the mediahubmini link.
8. Soft Reset Device.
9. Launch "Touch Settings" program from the Start Menu.
10. BEFORE MAKING ANY CHANGES TO THE CUBE CLICK "SAVE". WAIT APPROXIMATELY 1 MINUTE AND THEN SOFT RESET AGAIN.
11. Run Touch Settings again and start customizing.
Hope this helps.
Later
utexascg said:
the original "Touch Settings" program that you're referring to will work with the Sprint Touch without any problems. You just have to know what you're doing....
Step 3: Download and install the TouchFlo Alpha cab below.
- 3a: upon successful completion of the installation you will be prompted to "Reset" your device. Click "NO".
...
6. Download and install the Touch Settings Cab below. Again, at the completion of the installation it will prompt you to restart your device. SELECT NO!. You are not ready to reset your device just yet.
...
Click to expand...
Click to collapse
Not sure what and where to get these cabs... can you provide links? (especially first one)
TouchFlo Alpha cab? Touch Settings Cab (is ths 1.22 or 1.29?)
Haggar said:
I'm starting this as a separate thread since the new beta version will have many issues unrelated to the original versions.
Click to expand...
Click to collapse
Hi guys and thx Haggar and others for bug reports - I think I may have some theories as to what's going wrong.
I made a new test build for you to try out - the CAB is attached below. (REMOVED, SEE LATER POST FOR UPDATED VERSION) Please install and let me know how you get on. It should create a log file called log.txt in the app directory which you can attach to your post in case of any problems:
QUESTIONS:
1. Does it now work?
2. If not, what happens?
3. If not, please attach the log file.
4. When you go to the "About" screen, it says "Detected Device:" at the top - what is the detected device?
@utexas - I'm not sure what your instructions are referring to, but please ignore these peeps, as it would be best for us to try to get the app working properly with the Sprint without resorting to loading older versions of the TOuchFLO software onto your devices.
Finally, does anybody have a Sprint that they HAVENT yet installed Touch Settings onto? If so, please could somebody zip up a copy of \Windows\MediaHubMini.exe for me from your Sprint device and send it to me? This should be BEFORE installing any Touch Settings software, as this patches over the executable, and I'd like a copy of the NEW MediaHubMini.exe that comes with your device, so I can see if I need to release a new patch. If anyone has recently hard reset their device, then the file will be on your device unaltered.
Thanks for the nice comments peeps.
Carlos
Here you go Carlos. I have never installed Touch Settings on my Sprint Touch.
What exactly is Touch Settings? Could someone tell me, or point me to the original thread? Thanks.
Thanks Carlos... I've attached the log.txt file... still generating errors... looking for bitmaps (brns) that it cannot load... example... looking for \windows\AL_03.brn... this file is indeed located in the indicated location so not sure what the problem is...I tried to make and save a change to the launcher and now I get no images in the 3x2 launcher.
abeery said:
Thanks Carlos... I've attached the log.txt file... still generating errors... looking for bitmaps (brns) that it cannot load... example... looking for \windows\AL_03.brn... this file is indeed located in the indicated location so not sure what the problem is...I tried to make and save a change to the launcher and now I get no images in the 3x2 launcher.
Click to expand...
Click to collapse
Other than the time of day, his log file looks identical to mine...so I won't bother uploading...
abeery said:
Thanks Carlos... I've attached the log.txt file... still generating errors... looking for bitmaps (brns) that it cannot load... example... looking for \windows\AL_03.brn... this file is indeed located in the indicated location so not sure what the problem is...I tried to make and save a change to the launcher and now I get no images in the 3x2 launcher.
Click to expand...
Click to collapse
same here. but what i figured out about "no images in the launcher" is the path are all set to "\\" instead of just one "\". so i use memmaid to fix it in the registry and the cube is fine again.
OK everyone
Thanks for all the log files etc. It's now very clear what the issue is - simply that the newer version of the touch uses BRN files instead of PNG files for its icons! BRN is a proprietary format, basically a BMP with header information removed and some other changes; there's information elsewhere on this site about it.
So... ...to get Touch Settings working on the Sprint, I'll have to build BRN support into the program, which is going to involve:
1. Studying the file format and finding out more info. ([HREF="http://forum.xda-developers.com/showthread.php?t=325424"]this thread[/HREF] is a good starting point)
2. OR approaching the author of the BMP2BRN program to ask if he'd allow me to use his source code inside Touch Settings.
....if anyone can help with either of these, please do! Touch Settings is written in vb.net CF.
Until then, might I suggest you go about trying to use .PNG files instead for the time being, and report back to the forum to let us know if they work instead of BRN files! I will release a new build of Touch Settings asap which side-steps the error messages and displays blank icons for the time being, just so as you can use the program.. ..it will work fine, it just won't display the icons for you!
Carlos
mark1581 said:
Here you go Carlos. I have never installed Touch Settings on my Sprint Touch. What exactly is Touch Settings? Could someone tell me, or point me to the original thread? Thanks.
Click to expand...
Click to collapse
Mark, thanks ever so much for this - will be very helpful! Original thread about Touch Settings - and what it is - here: http://forum.xda-developers.com/showthread.php?t=324556
log file...
My log file also had the same info. Thanks for all your hard work Carlos. A friend of mine also has a touch that does not have any settings program installed. Let me know if you need any other files.
lol i had a post earlier about PNG and BRN files. Basically i want to be able to just chang the icons text and path. I dont care about the BG color, how how the cube rotates. I made my own CUstom PNG's for the 3X2 launcher, and i made a custom one for the media hub. I made them all the same size on accident, but for the sprint touch do i need to convert the PNG's to BRN files then where do i save them in my phones directory?
anyone have the dimensions for the 3X2 and the media hub. I made them all
119 by 105. ?? Is there an easy way to change the size to the size for the media hub because i believe that is the size for the 3X2. Any help is appreciated!
carlosp_uk said:
OK everyone
Thanks for all the log files etc. It's now very clear what the issue is - simply that the newer version of the touch uses BRN files instead of PNG files for its icons! BRN is a proprietary format, basically a BMP with header information removed and some other changes; there's information elsewhere on this site about it.
Click to expand...
Click to collapse
Carlos,
I see from reading another thread you've already got the source code for "BrnConvert"... does this meet your needs or do you need anything else?
Let us know what we can do to aid your efforts... 1.29c was close but I had to clean up my registry to remove all the double slashes in the image and program paths and obviously the brn issue you noted...
Again thanks for you great work on this...
Everyone else... don't forget to buy this man a beer at his Fatattitute.com web site
is there any new news on a possible fix?
Is version 1.29c worth installing at this point? Any recommendations??
Hello everyone - I think I may be nearly there!
I've certainly got BRN support working on my original touch, anyway, so let's see if this new build works for you.
CAB file attached below, usual installation instructions apply. (see this thread: http://forum.xda-developers.com/showthread.php?t=324556)
Please let me know if the icons are displaying correctly, and any other feedback re: usage. Should be the correct colour mediahub logo too!
Carlos
PS: Sprint owners, for completeness, you may want to copy the newer mediahubmini.exe into your \Windows\ directory (attached) as my prog overwrites it with a slightly older version. My tests have shown this shouldn't be a problem, but it's up to you. Note to older Touch users: do NOT use this newer version of mediahubmini.exe you will run into problems with your touch screen.
so we install the cab then just replace the EXE file after.
also carlos, if i want to make my own icons
1. can they be the same size for the media hub and 3X2
2. Do they need to be BRN style, i made them PNG (but i can convert to BMP then to BRN.)
3. Where do i save them on my phone.
4. i have the sprint touch!
thanks carlos

The file 'IntShrUI' cannot be opened. Either it is not signed with

Ok found ICSinstall.cab on here and installed it, soft reset, and attempted to install the latest version of the WMWifiRouter program (which I finally succeeded in sourcing!).
However I get a message telling me cryptically that it 'cannot be installed' after attempting install. I wonder if this is related to ICS...
I now have the InShrUI.exe file in /windows/ *but* attempting to run it gives:
'The file 'IntShrUI' cannot be opened. Either it is not signed with a trusted certificate or one of it's components cannot be found. You might need to reinstall or restore this file.'
I reinstalled it over itself (i.e. ran the cab again) same error.
:-/
Was this the right file? I seem to remember it was dated 11th January 2008??
Thanks again for hte help folks!
I should say I'm running Microsoft Windows Mobile Version 5.0 (OS5.1.195 (build 14955.2.3.0).
Lastly I should say I've started a new topic as the last one was getting a bit off topic my original concern having been answered :-D (thanks guys!)
probably you only opened a shortcut (*.ink) and the shortcut pointed to a not existing file. Another thing is that it also was intsalled correctly (the *.exe), but the dll's or whatever are not installed.
Regards
Thanks. I'll try redownloading and repeating.
I was wondering if the file needed signed with some unique private key or something?
Anyways will give it a shot and report back
softonic123 said:
probably you only opened a shortcut (*.ink) and the shortcut pointed to a not existing file. Another thing is that it also was intsalled correctly (the *.exe), but the dll's or whatever are not installed.
Regards
Click to expand...
Click to collapse
Thanks for your suggestion I'm now a tiny bit further on.
On soft resetting the PPC I get the following error:
'Pocket PC Networking
Unable to obtain a server assigned IP address. Try again later or enter an IP address in Network settings.'
InShrUI is still giving the same error as before (and it's definately the .exe file I'm clicking).
However the improvement is: This time WMWifiRouter succeeded in installing...
However the same PPC networking error occurred during the install. I could probably tweak whatever is causing that error to use a static IP address rather than DHCP probably...but it's kind of dodging the problem.
And as said before I can't launch IntShrUI without getting that error. This time there is a shortcut to it though in program files.
I should also say that neither the executable or the shortcut has an Icon Image (i.e. it's the default no icon blank) so I suppose it might be the .exe file that's corrupt (since the shortcut get's it's icon from there I think?).
Last but not least:
WMWifiRouter reads:
Code:
'Not Connected'
Waiting for connection
I suspect the problem must lie with InShrUI but then again I'm a noob so I'll wait for the XDA gods to come and share their wisdom!
MrVarioII said:
Thanks for your suggestion I'm now a tiny bit further on.
On soft resetting the PPC I get the following error:
'Pocket PC Networking
Unable to obtain a server assigned IP address. Try again later or enter an IP address in Network settings.'
InShrUI is still giving the same error as before (and it's definately the .exe file I'm clicking).
However the improvement is: This time WMWifiRouter succeeded in installing...
However the same PPC networking error occurred during the install. I could probably tweak whatever is causing that error to use a static IP address rather than DHCP probably...but it's kind of dodging the problem.
And as said before I can't launch IntShrUI without getting that error. This time there is a shortcut to it though in program files.
I should also say that neither the executable or the shortcut has an Icon Image (i.e. it's the default no icon blank) so I suppose it might be the .exe file that's corrupt (since the shortcut get's it's icon from there I think?).
Last but not least:
WMWifiRouter reads:
Code:
'Not Connected'
Waiting for connection
I suspect the problem must lie with InShrUI but then again I'm a noob so I'll wait for the XDA gods to come and share their wisdom!
Click to expand...
Click to collapse
Is there no1 who can answer this? Anyone got any ideas?
Device is a hermes (T-mobile Vario-II) running WM5.....
There's one MAN point up for grabs for whoever can solve it!
I tried installing WMWifiRouter 0.89 onto a ROM which didn't have ICS included (which meant I had to try the same route you did) onto my Vario 2... I just couldn't get it to work, and I spent a while trying to make it work too.
I'm figuring that there's some deep-seated DLL or system association which ICS needs, which isn't configured if ICS is stripped out of the ROM - I ended up just reflashing with another ROM (the T-Mobile WM6.0 official ROM) and ICS and WMWifiRouter works fine.
Sorry that's not a solution, but it's the only way I could get it to work. Not an expert ROM cooker, so my knowledge of how ICS is stripped / included in ROMs is fairly limited, though I understand the concepts and techniques.
Thanks for your help Christopher.
I considered flashing a working ROM. My worry is about losing all the programs I have installed on the device (it took a long time to get it *this* customised ;-) ) is there any way to flash the new ROM while keeping the old registry entries etc. for registering my programs (Especially those I've bought such as Oxford Handbook of Clinical Medicine - which I cannot register anymore)? ...
Or could I somehow back up the registry and restore it later (I know that's likely to be a dangerous idea...perhaps simply the file associations and programs stuff -the windows mobile section?)
Thanks bro!
MrVarioII said:
Thanks for your help Christopher.
I considered flashing a working ROM. My worry is about losing all the programs I have installed on the device (it took a long time to get it *this* customised ;-) ) is there any way to flash the new ROM while keeping the old registry entries etc. for registering my programs (Especially those I've bought such as Oxford Handbook of Clinical Medicine - which I cannot register anymore)? ...
Or could I somehow back up the registry and restore it later (I know that's likely to be a dangerous idea...perhaps simply the file associations and programs stuff -the windows mobile section?)
Thanks bro!
Click to expand...
Click to collapse
Bumping as no replies for ages
Anyone?
Bumping again as no replies for a week or so
Bumping again to ask if anyone knows a way of slving this without having to reinstall all my programs, re register them, and reconfigure everything? (which I suspect installing a different ROM will do?) is it possible to back up the registry entries for all of my programs then do the ROM upgrade and restore the registry entries from my other programsMost of my programs are installed on the microSD card anyway (i didn't want to use up the main memory and slow the device up).??
If so how?
Thanks again folks !
I have the same problem...
I cant seem to find the answer but will continue to try.
if your programs are installed on your memory card then chances are you should be able to past shortcuts into the programs directory after reflashing. I tend to do this BUT I have found some programs that need to be re-installed or re-registered. Backing up registries can cause SERIOUS problems in itself so I would 1st do a full backup of your system (try spb backup, it backs up EVERYTHING on the phone then re-installs the lot so it seems like you never had a problem..) then flash. Try putting on shortcuts and if you have no luck you have the choice to start again on the new os or reflash to old and then restore backup (old problems wil still be there). Hope this helps.
Ps. I use resco explorer instead of the crap file explorer on the phone. It allows MUCH more versatility to do as I want. Cheers....

BSB tweaks error, please help

I've just installed BSB tweaks 1.6 from a thread on this site, but when I come to open it I get an error saying
"An uexpected error has occured in BsBTweaks.exe.
Select quit and then restart this program, or select Details for more information
This application requires a newer version of the Microsoft.NET compact framework that the version installed on this device"
What is the Microsoft.NET Compact Framework and where do I get a newer one?
If I click on details it says
"BsB Tweaks.exe MissingMethodException
This application requires a newer version of the Microsoft.NET compact framework that the version installed on this device"
snerkler said:
I've just installed BSB tweaks 1.6 from a thread on this site, but when I come to open it I get an error saying
"An uexpected error has occured in BsBTweaks.exe.
Select quit and then restart this program, or select Details for more information
This application requires a newer version of the Microsoft.NET compact framework that the version installed on this device"
What is the Microsoft.NET Compact Framework and where do I get a newer one?
If I click on details it says
"BsB Tweaks.exe MissingMethodException
This application requires a newer version of the Microsoft.NET compact framework that the version installed on this device"
Click to expand...
Click to collapse
The clue's in the error message (and the 1st post in the BsB Tweaks thread).
You need to download and install .Net 3.5.
I believe there's a link for it in the BsB Tweaks thread.
Hi,
It's in post #41 for some reason, there's a link in post #1 but that doesn't work...
http://forum.xda-developers.com/showpost.php?p=5033199&postcount=41
Cheers,
Gavin
http://rapidshare.com/files/150399830/NETCFv35.rar
and this :
Also make sure your phone is using the 3.5 as default and not 2.0. Go here: HKLM/Software/Microsoft/.NETCompactFramework. Change the DWORD data of entry 2.0.7045.00 from 1 to 0. Next Change the DWORD data of entry 3.5.7283.00 from 0 to 1 and then reset. This disables 2.0 and enables 3.5.
lol seems we all answerd same time , i was looking up info while responding
webjunky said:
http://rapidshare.com/files/150399830/NETCFv35.rar
and this :
Also make sure your phone is using the 3.5 as default and not 2.0. Go here: HKLM/Software/Microsoft/.NETCompactFramework. Change the DWORD data of entry 2.0.7045.00 from 1 to 0. Next Change the DWORD data of entry 3.5.7283.00 from 0 to 1 and then reset. This disables 2.0 and enables 3.5.
lol seems we all answerd same time , i was looking up info while responding
Click to expand...
Click to collapse
err, what language is that? I'm afraid I'm only a beginner
Gavinbat said:
Hi,
It's in post #41 for some reason, there's a link in post #1 but that doesn't work...
http://forum.xda-developers.com/showpost.php?p=5033199&postcount=41
Cheers,
Gavin
Click to expand...
Click to collapse
I've downloaded this and unzipped it and I have loads of files, what do I do with these now?
Oh, and what is this "manila" I keep reading about? I've googled it and can only find info on the city or web publishing systems
Hi,
Copy the .cab to your phone memory card, then install it from there
Mannila, still not sure myself only got phone yesterday pm!
Cheers,
Gavin
Gavinbat said:
Hi,
Copy the .cab to your phone memory card, then install it from there
Mannila, still not sure myself only got phone yesterday pm!
Cheers,
Gavin
Click to expand...
Click to collapse
I didn't get a .cab file like normal, just got a heap of files, system files, NET files, Mscore files, whatever the hell those are?
snerkler said:
I didn't get a .cab file like normal, just got a heap of files, system files, NET files, Mscore files, whatever the hell those are?
Click to expand...
Click to collapse
Snerkler,
Your learning curve is a steep one but let's battle on.
I have just gone to the same thread/post and downloaded the file you should have downloaded. If that's not what you have, go back and download the correct file type. Its a zipped file with a load of other files in it. This type of zipped file is called a cab file.
Connect your phone to your pc via activsync (read the manual, it tells you how), then copy this cab file (do not extract it, just copy it across as it is) to your phone.
Next, open file explorer on your phone (you will find this tool if you click Start at the top left of your phone and scroll down), find the cab file, double tap on it and it will install.
Job done.
WB
PS: Don't forget to get into the habit of posting in existing threads to get specific answers. So for BSB Tweaks, post in that thread. Chances are your query has already been answered in that thread.
Keep going, any more questions, come right back.
WB
PPS: manilla is the flashy fancy interface on your device that gives you all those beautiful weather animations. It is HTC's attempt to make the device more presentable and user friendly than just using the plain old windows mobile interface, which is well past its sell-by date.
snerkler said:
I didn't get a .cab file like normal, just got a heap of files, system files, NET files, Mscore files, whatever the hell those are?
Click to expand...
Click to collapse
Use the one that Gavinbat suggested above...
http://forum.xda-developers.com/showpost.php?p=5344140&postcount=3
And ignore the stuff about editing the registry. Don't worry about that. Just install the cab on your device and then BsB Tweaks will work.
wacky.banana said:
Snerkler,
Your learning curve is a steep one but let's battle on.
I have just gone to the same thread/post and downloaded the file you should have downloaded. If that's not what you have, go back and download the correct file type. Its a zipped file with a load of other files in it. This type of zipped file is called a cab file.
Connect your phone to your pc via activsync (read the manual, it tells you how), then copy this cab file (do not extract it, just copy it across as it is) to your phone.
Next, open file explorer on your phone (you will find this tool if you click Start at the top left of your phone and scroll down), find the cab file, double tap on it and it will install.
Job done.
WB
PS: Don't forget to get into the habit of posting in existing threads to get specific answers. So for BSB Tweaks, post in that thread. Chances are your query has already been answered in that thread.
Keep going, any more questions, come right back.
WB
PPS: manilla is the flashy fancy interface on your device that gives you all those beautiful weather animations. It is HTC's attempt to make the device more presentable and user friendly than just using the plain old windows mobile interface, which is well past its sell-by date.
Click to expand...
Click to collapse
Thanks. Got the .cab file this time. I have no trouble installing .cab files but for somereason it didn't extract first time, therefore I thought I had to do something with all the other files :-/
I've got BsB tweaks up and running now, but it still doesn't seem to function properly. It doesn't seem to have changed opera in the sense that I still can't click links unless I zoom in. I do have the opera link click turned on.
Also when I check the boxes for the programs I want to use rotation for they uncheck themselves everytime I leave the menu. I will have a look at that BSB tweaks thread and see if anyone else has had these issues.
snerkler said:
Also when I check the boxes for the programs I want to use rotation for they uncheck themselves everytime I leave the menu. I will have a look at that BSB tweaks thread and see if anyone else has had these issues.
Click to expand...
Click to collapse
You definitely need to read up on BsB, because you're expecting something that's not correct.
Just spend some time reading the thread - there's a lot of help in there, so don't just skip to the end
Glad you got it running at least
Hi
I read this thread a couple of times and still didn't get it right.
Can you please help me?
i downloaded all the needed files. first i installed Net 3.5. than i restarted and then i installed the BsB Tweaks cab file and then i restarted the phone again. when i tryed to activate the BsB Tweaks app it gave me the the error you have been talking about here, and i can't get past this problem...
any suggestions?

Categories

Resources