Related
Hello,
I'm trying to localize my German and English PPC devices into Polish language.
I do this on 2003 and 2003 devices, it was easy.
But in WM 5.0 and 6.0 is somethink like file certification, and system don't want to run my MUI and DLL files placed in Windows folder.
Plase help me, some one have a sample source code in C++ or C# how to change system registry or modiffy WM to run my MUI (language resources) and DLL (keyboard) files.
or how corectly cert this files without pay Geotrust or other company.
Thanks and greatings,
Kamil
use msigner to sign them..
Thank You
Where can i found source code for this program msigner, and other version called: unsigner or somethink like this ?
And i will ask for somethink different. Because i think you can know. Where can i find source example explain how i can install dll and other files into rom (i mean, when i do hard reset that files will be in device.)
Thks,
Kamil
if u want to place the dlls or other files in to ROM while cooking..its easy just place them in the dump..or u can use resco explorer to copy them while u are using the rom...if u place them while cooking it will be available when u hardreset..but if u put it through resco or some other s/w..they wnt be there
here's where u can get it
http://forum.xda-developers.com/showthread.php?t=306982
Hello everybody !!
I have to replace the backlight cpl of my rom, by an other backlight programm !
SO, there are 2 solutions :
Redirect the cpl, to the exe file !
OR
Convert .exe to .cpl, and replace the cpl files !
Have you issues about this ?
Great thanks !!
I am not sure if it is possible but i need the exactly opposite thing
cpl to exe
Yes you can actually add "Redirect"="\Windows\other.exe" to the controlpanel registry in Local Machine and Local User part.
And you can even add you own items from exe'if you search further.
Code:
[HKEY_LOCAL_MACHINE\ControlPanel\MyCPL\29]
"Name"="YourAppName"
"File"="YourApp.exe"
"Description"="YourAppName"
[HKEY_LOCAL_MACHINE\ControlPanel\29]
"Group"=dword:00000000
"Description"="YourAppName"
Thanks for your answer ! But colonel, i don't understand your code, why '29' ?
29 Represent to any Unique Number u may use
Ok, because whe i look in the registry in my HTC TOuch ( for example) i have no value "29" !
hello all , i will change somthing i hkey local machine but i dont understant how i get there?? can sombady help me and explaine me what i need to pusch to com to hkey???
sorry my english
you need a special program - email/ping me and I will send it to you.
Will
can you tell me name of program and what i need to do??
ok now i have found ceregeditor , but when i found file on my device how i can get this to change data
Total Commander will edit the registry.
http://www.ghisler.com/
Hi,
We have a provisioning website where a user logs in, enters the device IMEI #, phone # and submits. Now, this site will generate a unique CAB file on the fly for this individual and push it to his/her device. This CAB will will have a _setup.xml file which modifies a registry entry on the device. However, this will be unique to this device only, and hence should run only if the IMEI # matches.
Question 1 - Is it possible for a CAB file to check phone's IMEI # before installing the CAB (Windows mobile 6)?
Answer: Looks like it is using SETUP.DLL file link
Question 2 - How can I pass the IMEI # this individual submitted in the form as a parameter to SETUP.DLL so that SETUP.DLL can read the device IMEI and compare it to this one? Is it possible to add it to _setup.xml?
Answer: ??
The goal is to create a CAB file that can be installed on one device only (I believe IMEI will be the best thing to restrict it to one device)
Thanks in advanced..
you know the code right? use a script or something (i'm not a winmo coder kinda guy or even a coder, but i'll try my best)
if IMEI=XXXXXXXXXXXXXXX
then run XXXXX.cab
else exit
thats how good i am at code (not good)
I need to house everything inside one CAB on the fly. Also, I have modified my op.. so please check it. I found the answer to the first question - SETUP.DLL can make the check and run _setup.xml only if it meets the criteria.
Now, I don't know how to pass the IMEI # the user put in the webform as a parameter to this SETUP.DLL when I creating this custom CAB on the fly.
is it absolutely 100% necessary to have a cab file as the end user solution? An executable could run the code and the run a cab file that is inside the executable. I'm pretty sure this is possible
Unfortunately, it has to be a CAB file since it is seamless. The user get's a SMS with a link to his/her unique CAB on the device.. clicks on it.. and installs it.
Easy workaround for "end user": extract the CAB on the PC...
Rather the main app EXE should check its validity, not the CAB file.
do not use cab, use application (executable) you can easy use this logic
if IMEI#=XXXXXXXXXXXXX (the IMEI that should be)
then modify registry this way (and add the needed changes)
if IMEI# not equal
bring error message
you can not make the cab to perform tasks before running it
or maybe there is something you can do in setup.dll
so the prosedure will be
run cab instalation setup.dll checks if imei = _setup.xml given imei then proceed with instalation if it is not equal then fail instalation
i am not programmer too but it seems that these are the 2 variants, sorry i can not give you any technical tips about this (like sample code)
OK, so in looking at the source code, it seems that all I need to do is add a folder called /xml-az/ to /platform/packages/inputmethods/LatinIME.git/java/res/ that contains the custom kbd_qwerty.xml and kbd_qwerty_black.xml files for the language (in this case Azerbaijani which is a language very very similar to Turkish).
Eventually what I would like to do is create an APK to insert that code, but I need some help. I can write Java code so editing the source is not so much the problem. I need more help in creating the apk patch for testing and then the process in submitting the code. Anyone wanna help?