Troubles with CM_Planner / PreferredConnections (wapprov) - Windows Mobile Development and Hacking General

Hello, i cannot figure out why this isn't working :
I've created a wap-prov XML (and it is working... mostly !) to configure connections, it looks like this :
Code:
<wap-provisioningdoc>
<characteristic type="CM_Networks">
<characteristic type="MyCorporateCnx">
<parm name="DestId" value="{D4C3F5C3-D005-B600-FE80-492A450DA5C9}"/>
<parm name="Secure" value="0"/>
<parm name="ReadOnly" value="0"/>
</characteristic>
</characteristic>
<characteristic type="CM_GPRSEntries">
<characteristic type="CnxCorp">
(Skipping all the GPRS parm part, which is working so far!)
</characteristic>
</characteristic>
<characteristic type="CM_ProxyEntries">
<characteristic type="HTTP-{D4C3F5C3-D005-B600-FE80-492A450DA5C9}">
(Skipping all the Proxy parm part, which is working so far!)
</characteristic>
</characteristic>
<characteristic type="CM_Planner">
<parm name="RetryCount" value="3"/>
<parm name="CacheTime" value="600"/>
<parm name="CoeffLatency" value="65536"/>
<parm name="CoeffCost" value="65536"/>
<parm name="CoeffBandwidth" value="65536"/>
<parm name="VPNCacheTime" value="60"/>
<nocharacteristic type="PreferredConnections"/>
<characteristic type="PreferredConnections">
<parm name="{436EF144-B4FB-4863-A041-8F905A62C572}" value="MyCorporateCnx"/>
</characteristic>
</characteristic>
</wap-provisioningdoc>
- I tested the XML with RapiConfig.exe, then i've created a .CAB with it.
- In both cases, the connections are properly configured (it's the working part)
- BUT the default Internet connection is still set to its previous value (should be "MyCorporateCnx" instead)
I also tried to replace the name of the cnx with its ID :
Code:
<nocharacteristic type="PreferredConnections"/>
<characteristic type="PreferredConnections">
<parm name="{436EF144-B4FB-4863-A041-8F905A62C572}" value="{D4C3F5C3-D005-B600-FE80-492A450DA5C9}"/>
</characteristic>
</characteristic>
And it dosesn't work either.
Any ideas would be welcome !
(Tested it on my non-modded HTC Touch Pro 2)

Answering to my own question
My XML adds ONE new connection (including GPRS & PROXY related config) to the existing device config.
That means that, unless i deactivate the former default connection, it will remains as default, even with the CM_Planner stuff in my XML.
After a few tests, i've found out a way to deactivate the former default connection : change its proxy "Enable" state from 1 to 0.
So i've added this to my XML :
Code:
<characteristic type="CM_ProxyEntries">
<characteristic type="HTTP-{FF445A54-ADF8-4fab-86B7-E31482BEE8BE}">
<parm name="Enable" value="0"/>
</characteristic>
</characteristic>
(HTTP-{FF445A54-ADF8-4fab-86B7-E31482BEE8BE} is the former default connection proxy)
Now that my XML sets it to 0, i have the good (newly added) connection as default.
I'm a bit disapointed because i wanted to use only one XML for several HTC devices (Pro 2, Touch 2...) Adding a new connection sounded like OK, but modifying an existing one will raise a compatibility issue (i guess), since nothing can garantee that HTTP-{FF445A54-ADF8-4fab-86B7-E31482BEE8BE} will exists on the other devices...

Hello,
I noticed that when you provision the preferred connection, it is not shown in the settings->connection>advanced->select networks screen until you:
1- open that screen, not change a single thing (so the wrong default connection is selected)
2- click on 'ok'
3- reopen the screen, now the correct default connection is showed.
I am going to look further into this...
Regards,
Ernstjan

Related

Adding Profiles (Smartphone)

I'd like to add a new profile to my Smartphone (Qtek8310), so I can have different sound settings when I'm on Call during the night. Since there is no "Add Profile" in the profiles.exe app I added a registry key and values:
[HKEY_CURRENT_USER\ControlPanel\Profiles\Pikett]
"Order"=dword:00000009
"Name"="Pikett"
"LocName"="Pikett"
Now profiles.exe shows me an entry called "Pikett", but I can not edit the sound settings, because this screen is empty.
Does anyone know where those profile settings are saved and if there is a way to add settings for a new profile?
I added Pikett.prof.xml to \Application Data\Profiles\ which I copied from Normal.prof.xml and edited it this way:
<characteristic type="Normal"><characteristic type="Registry">
<characteristic type="HKCU\ControlPanel\Profiles\Pikett">
<parm name="Name" value="Pikett"/>
</characteristic>
</characteristic>
<characteristic type="Sounds">
<parm name="RingTypeAll" value="apw3r"/>
</characteristic>
<characteristic type="Registry">
<characteristic type="HKCU\ControlPanel\SoundCategories">
<characteristic type="Ring">
<parm name="InitVol" value="1"/>
</characteristic>
<characteristic type="Alarm">
<parm name="Script" value="pw10pw10c110pw10c110pw30c110pw30c110pw30c110pw120c110pw300c110p"/>
<parm name="InitVol" value="1"/>
</characteristic>
<characteristic type="Notification">
<parm name="Script" value="p"/>
<parm name="InitVol" value="1"/>
</characteristic>
</characteristic>
</characteristic>
<characteristic type="Sounds">
<characteristic type="System">
<parm name="InitVol" value="1"/>
</characteristic>
</characteristic>
</characteristic>
Now editing the sound profile works, but selecting the new "Pikett" entry results in switching back to the normal profile after 1 second.
Does anyone know how to "establish" this new profile?

Restoring Wi-Fi settings after hard reset

Hi all,
I would love to restore my WiFi settings from a hard reset.
I can configure the setup manually with no problem.
I am aware that I need to use XML to do this, and have tried it using Cuccureddu's tips from this thread http://forum.xda-developers.com/show....php?p=1227587 (using provxml) and also tried from _setup.xml in a CAB file: I receive an error saying "Installation of wifi.cab was unsuccessful".
I've tried this with Wifi enabled and Wifi disabled, btw...
How I did it:
- Created a file in Notepad with all my settings, as follows - I went to the MSDN pages as mentioned in cuccureddu's post, as my network uses WEP:
<wap-provisioningdoc>
<characteristic type="CM_WiFiEntries">
<characteristic type="My_SSID">
<parm name="DestID" value="{436EF144-B4FB-4863-A041-8F905A62C572}"/>
</characteristic>
</characteristic>
<characteristic type="Wi-Fi">
<characteristic type="access-point">
<characteristic type="My_SSID">
<parm name="DestId" value="{436EF144-B4FB-4863-A041-8F905A62C572}"/>
<parm name="Encryption" value="4"/>
<parm name="Authentication" value="4"/>
<parm name="NetworkKey" value="My_Network_Key"/>
</characteristic>
</characteristic>
</characteristic>
</wap-provisioningdoc>
Made the cab in the following ways:
1. As stated in the linked post, using .provxml.xml and the MakeCab.exe from Windows XP (with .provxml.xml saved as UTF-8, then Unicode - as another post indicated it should be saved as UTF-8(?!?)).
2. As above, saving .provxml.xml both as UTF-8 and then Unicode, but using the MakeCab.exe from the WM5 SDK.
Makecab.exe /D COMPRESS=OFF .provxml.xml wifi.cab
Note: I transferred the file in all above cases over ActiveSync to my Storage Card, which is where it was run from.
Hmmm...
So, I'm a little stuck... does anybody have any ideas, or want further info?
TIA for any help you can give...
rename your provxml to _setup.xml, then do:
makecab _setup.xml WifiSettings.CAB /v3
Still doesn't work, always give me the following error: "Installation of wifi.cab was unsuccessful". Can someone send me one that is working and let me try it and see if my device is flakey?
Got the same issue, i never get it to work, would be very pleased if this is fixable.
I am using Wifiprofiles app to create diffrent profiles. Once I am in a diffrent wifi network I simply change the profile and my new settings gets applied.
And it supports profile export and import.
<wap-provisioningdoc>
<characteristic type="CM_WiFiEntries">
<characteristic type="YOUR SSID">
<parm name="DestID" value="{436EF144-B4FB-4863-A041-8F905A62C572}"/>
</characteristic>
</characteristic>
<characteristic type="Wi-Fi">
<characteristic type="access-point">
<characteristic type="YOUR SSID">
<parm name="DestId" value="{436EF144-B4FB-4863-A041-8F905A62C572}"/>
<parm name="Encryption" value="0"/>
<parm name="Authentication" value="0"/>
<parm name="Hidden" value="0"/>
<parm name="KeyProvided" value="0"/>
<parm name="NetworkKey" value="YOUR NETWORK KEY"/>
<parm name="KeyIndex" value="1"/>
<parm name="Use8021x" value="0"/>
</characteristic>
</characteristic>
</characteristic>
</wap-provisioningdoc>
Save as "_setup.xml"
from the dos prompt type...
makecab /D compress=off _setup.xml WiFi.cab
this just worked for me...
Rick
Hello,
Sorry for refreshing an old topic but I would like to refer to the tutorial posted above. I finally managed to build a cab with my WiFi settings which would install on PDA without problems, but only if I install one network at a time.
What if I would like to restore several WiFi networks. Can it be done with one cab = one provisioning xml only?
I tried several ways (the simpliest was to add particular lines of code one network after another - of course I put everything between the <wap-provisioningdoc></wap-provisioningdoc>) but I can't get the networks to work. The cab says that the installation was unsuccessful and after that both networks are present in the network settings, but without the WPA keys. If only one network is in one cab, then whole configuration is restored without any problem.
Did somebody of you guys managed to find a way to add more configuration options to one working provxml? I wish I could make one cab file with one _setup.xml inside consisting of all my settings for registry, WiFi, e-mail accounts and some other? Or it is better (and/or safer) to make separate cabs (or xmls) for each kind of setting (including separate WiFis)?
TIA for a bit of an explanation...
Best Regards
Skrobel
rjh1 said:
<wap-provisioningdoc>
<characteristic type="CM_WiFiEntries">
<characteristic type="YOUR SSID">
<parm name="DestID" value="{436EF144-B4FB-4863-A041-8F905A62C572}"/>
</characteristic>
</characteristic>
<characteristic type="Wi-Fi">
<characteristic type="access-point">
<characteristic type="YOUR SSID">
<parm name="DestId" value="{436EF144-B4FB-4863-A041-8F905A62C572}"/>
<parm name="Encryption" value="0"/>
<parm name="Authentication" value="0"/>
<parm name="Hidden" value="0"/>
<parm name="KeyProvided" value="0"/>
<parm name="NetworkKey" value="YOUR NETWORK KEY"/>
<parm name="KeyIndex" value="1"/>
<parm name="Use8021x" value="0"/>
</characteristic>
</characteristic>
</characteristic>
</wap-provisioningdoc>
Save as "_setup.xml"
from the dos prompt type...
makecab /D compress=off _setup.xml WiFi.cab
this just worked for me...
Rick
Click to expand...
Click to collapse
Thank you. My headache has subsided.

Could someone please review my .XML code? (new to provisioning)

As mentioned in the title, I am trying to get my feet wet with .xml provisioning. (Specifically with .XML provisioned registry settings.) After researching, I understand that registry settings and XML provisioning can get pretty tricky and as well as quite complex. So I decided to start small with keyboard layout, customizing SK2 on the today screen and changing my S2U2 background.
I am having problems getting my .XML files to work and can't tell if its my .xml documents or if its my method of loading the files. Because of this, I was hoping someone could take a look at my code and let me know where my mistakes lay.
Keyboard Layout:
<wap-provisioningdoc>
<characteristic type="Registry">
<characteristic type="HKLM\SOFTWARE\OEM\Qwerty\">
<parm name="Layout" datatype="DWORD" value="132100" />
</characteristic>
</characteristic>
</wap-provisioningdoc>
SK2 on the todayscreen:
<wap-provisioningdoc>
<characteristic type="Registry">
<characteristic type="HKCU\Software\Microsoft\Today\Keys\112">
<parm name="Default" datatype="String" value="Google Maps" />
<parm name="Open" datatype="String" value="\Program Files\GoogleMaps\GoogleMaps.exe" />
</characteristic>
</characteristic>
</wap-provisioningdoc>
S2U2 Wallpaper:
<wap-provisioningdoc>
<characteristic type="Registry">
<characteristic type="HKCU\Software\A_C\S2U2\">
<parm name="Wallpaper" datatype="String" value="\My Documents\My Pictures\Album Sample_07.jpg" />
</characteristic>
</characteristic>
</wap-provisioningdoc>
Thanks!
-hier0
try adding (translation="filesystem") to any line that has a backslash or is a system path like so:
<wap-provisioningdoc>
<characteristic type="Registry">
<characteristic type="HKCU\Software\Microsoft\Today\Keys\112" translation="filesystem">
<parm name="Default" datatype="String" value="Google Maps"/>
<parm name="Open" datatype="String" value="\Program Files\GoogleMaps\GoogleMaps.exe" translation="filesystem"/>
</characteristic>
</characteristic>
</wap-provisioningdoc>
please let us know if this solves your problem...
That didn't work either =\
Maybe, I am incorrectly creating the .xml file itself. I have tried two method of doing so: Notepad and Dreamweaver.
Are these the correct steps for creating an xml document in notepad?
1. Open Note Pad
2. Paste my xml code:
<wap-provisioningdoc>
<characteristic type="Registry">
<characteristic type="HKCU\Software\Microsoft\Today\Keys\112" translation="filesystem">
<parm name="Default" datatype="String" value="Google Maps"/>
<parm name="Open" datatype="String" value="\Program Files\GoogleMaps\GoogleMaps.exe" translation="filesystem"/>
</characteristic>
</characteristic>
</wap-provisioningdoc>
3. Save the document as "filename.xml"
are there any other tags that i need to include either before or in between the <wap-provisioningdoc> tag?
[EDIT] I am not sure if it helps or not but the error i am getting when installing/loading the file is : "unknown error occured: 0x80004005"
save it to your desktop and open it in IE
If the format is correct, you can open and expand/collapse the keys
how are you trying to install it?
As far as I know, you have to create a cab file to install it...
rename to "_setup.xml" and use "makecab.exe" like this at the command line:
makecab _setup.xml cabname.cab
Hi, For registry xml provisioning, if you have sktools 4.7, you can export the keys from registry and use the functionality build cab from reg. Then you open the cab with winzip, view the _setup xml file and copy to your xml file as a scheleton. Remove the first characteristics (they rule the cab itself) and copy when it says caracteristic registry.
There are also tools like reg to xml but they require cf 2.0 in the pc.
for email and wifi the easiest way is to do it with sashimi-makisu.
the only thing I saw compared with my files is that datatype is always at the end in my files, after the value. I have never use the one "DWORD": only string, integer, binary.
I usually import with sdcsoft task manager, the message you get, in my experience means it is well formed (try opening with ie as commented in previous tag), but the commands can not be executed.
AFAIK you have to have a blank line at the end of the xml/provxml file. This is the code for me to set up my data connection
Code:
<wap-provisioningdoc>
<characteristic type="CM_GPRSEntries">
<characteristic type="T-Mobile Internet">
<parm name="DestId" value="{F750E26F-81D9-4379-8567-318C129CA736}" />
<parm name="UserName" value="faster" />
<parm name="Password" value="web" />
<parm name="Enabled" value="1" />
<characteristic type="DevSpecificCellular">
<parm name="GPRSInfoValid" value="1" />
<parm name="GPRSInfoAccessPointName" value="general.t-mobile.uk" />
</characteristic>
</characteristic>
</characteristic>
</wap-provisioningdoc>

How to change the device id?

I am trying to install the BB application suite, I'm following the partial instructions from this but that doesn't. So instead I am looking through the rom using a hex application to try and change the name from Leo!
If that makes any sense does anyone have any idea how to change the name?
Thanks!!
settings menu all settings system about device id.
is that what you are looking for?
taken from my provisioning XML..
Code:
<characteristic type="Registry">
<characteristic type="HKLM\Software\WIDCOMM\BTConfig\General">
<parm name="DeviceName" datatype="string" value="[b]HDManiac[/b]"/>
</characteristic>
</characteristic>
<characteristic type="Registry">
<characteristic type="HKLM\Ident">
<parm name="Name" datatype="string" value="[b]HDManiac[/b]"/>
<parm name="OrigName" datatype="string" value="[b]HDManiac[/b]"/>
</characteristic>
</characteristic>
<characteristic type="Registry">
<characteristic type="HKLM\System\Platform">
<parm name="OEMString" datatype="string" value="[b]HDManiac[/b]"/>
</characteristic>
i think what you seek is the last section...the OEM string (AFAIK)
registry path HKLM\System\Platform
hope it helps!
thanks tmaniac I will have a go!!
It seems to reset itself back after every soft reset! Any ideas?
I'm trying to change my device ID also. I have an omnia 2. I was just wondering if u came up with a solution.
Hey guys, this would need a solution, i need it for xperia. I know there are already solutions for other devices. (cant post a links) Such like SetModelID.exe and BB.cab, however you have to run it after every reboot...
I wish there would be a universal and easy solution for this ;\
solved?!
forum.xda-developers.com/showthread.php?t=574211
Check out this thread - i hope this help.

How to disable Wi-fi interface?

I want to disable Bluetooth and Wi-Fi interface on my HTC Touch HD (WM6.1) Here is my provisioning XML file
<wap-provisioningdoc>
<characteristic type="NetworkPolicy">
<characteristic type="Bluetooth">
<characteristic type="Settings">
<parm name="Disabled" value="1"/>
</characteristic>
</characteristic>
<characteristic type="NetworkPolicy">
<characteristic type="Wi-Fi">
<characteristic type="Settings">
<parm name="Disabled" value="1"/>
</characteristic>
</characteristic>
</characteristic>
</wap-provisioningdoc>
... After installing these settings my Bluetooth interface is disabled but Wi-Fi is still activated...
any ideas?
thanks guys!
Just replace the line
<characteristic type="Wi-Fi">
with
<characteristic type="WiFi">
and Wi-Fi is disabled

Categories

Resources