[Free App] CabGen - easily create .cab from wap-provisioningdoc - Windows Mobile Software Development

I'd like to announce a FREE webapp that I've just created, CabGen. It allows you to quickly and easily convert your <wap-provisioningdoc> xml configuration file into an installable .cab file. I wanted this functionality for my own apps, so I decided to make it a little more generic and give it to the community! If you don't know what wap-provisioningdoc means, then this probably isn't for you but for those of you who know what it means, I hope this is helpful!
http://supware.net/CabGen

supbro said:
I'd like to announce a FREE webapp that I've just created, CabGen. It allows you to quickly and easily convert your <wap-provisioningdoc> xml configuration file into an installable .cab file. I wanted this functionality for my own apps, so I decided to make it a little more generic and give it to the community! If you don't know what wap-provisioningdoc means, then this probably isn't for you but for those of you who know what it means, I hope this is helpful!
http://supware.net/CabGen
Click to expand...
Click to collapse
A great tool for linux & mac folks ... I think that makecab.exe is available, if not included in Windows XP (Pro?).
Code:
makecab _setup.xml RegEdits.cab
Thanks for sharing.
Best regards,
-boggsie

boggsie said:
A great tool for linux & mac folks ... I think that makecab.exe is available, if not included in Windows XP (Pro?).
Code:
makecab _setup.xml RegEdits.cab
Thanks for sharing.
Best regards,
-boggsie
Click to expand...
Click to collapse
... and for people who are scared of the cmd prompt

+1 great tool,
esay create cab
thank you supbro

supbro said:
I'd like to announce a FREE webapp that I've just created, CabGen. It allows you to quickly and easily convert your <wap-provisioningdoc> xml configuration file into an installable .cab file. I wanted this functionality for my own apps, so I decided to make it a little more generic and give it to the community! If you don't know what wap-provisioningdoc means, then this probably isn't for you but for those of you who know what it means, I hope this is helpful!
http://supware.net/CabGen
Click to expand...
Click to collapse
I've tested the online tool and got error message:
Fatal error: Maximum execution time of 30 seconds exceeded in /users/supbro.com/htdocs/supware.net/CabGen/MakeCAB.class on line 465

jwoegerbauer said:
I've tested the online tool and got error message:
Fatal error: Maximum execution time of 30 seconds exceeded in /users/supbro.com/htdocs/supware.net/CabGen/MakeCAB.class on line 465
Click to expand...
Click to collapse
Interesting, is your xml lengthy? I just tried it again without a problem. Maybe it was a one-time hiccup?

The .xml-file i tried to convert to .cab-file is of 159KB size:
http://www.mediafire.com/file/4wnmyenizjy/WMP9.reg.xml

jwoegerbauer said:
The .xml-file i tried to convert to .cab-file is of 159KB size:
http://www.mediafire.com/file/4wnmyenizjy/WMP9.reg.xml
Click to expand...
Click to collapse
That certainly should be small enough. It seems that the MakeCab.class php file I'm using must have an infinite loop somewhere. If you're interested in trying to fix it, it's here:
http://supware.net/CabGen/MakeCAB.class

Thanks!
supbro said:
I'd like to announce a FREE webapp that I've just created, CabGen. It allows you to quickly and easily convert your <wap-provisioningdoc> xml configuration file into an installable .cab file. I wanted this functionality for my own apps, so I decided to make it a little more generic and give it to the community! If you don't know what wap-provisioningdoc means, then this probably isn't for you but for those of you who know what it means, I hope this is helpful!
http://supware.net/CabGen
Click to expand...
Click to collapse
Thanks so much for this - it's awesome!!!

yvettejudd said:
Thanks so much for this - it's awesome!!!
Click to expand...
Click to collapse
Glad someone finds it useful

How i can generate a cab with this xml/reg:
Code:
<wap-provisioningdoc>
<characteristic type="Registry">
<characteristic type="HKLM\Software\Microsoft\CHome" translation="filesystem">
<parm name="DefaultXML" datatype="string" value="<Plugins Order=\CMyPhotos;CMusic;CPhone;CVoicemail;CClock;CText;CEmail;CAppointments\ CPRFileName=\Titanium\ DisplayStyle=\Titanium\ />"/>
<parm name="ExtensibilityXML" datatype="string" value="<Plugins Order=\CMyPhotos;CMusic;CPhone;CVoicemail;CClock;CText;CEmail;CAppointments\ CPRFileName=\Titanium\ DisplayStyle=\Titanium\ />"/>
</characteristic>
</characteristic>
</wap-provisioningdoc>
Code:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\Software\Microsoft\CHome]
"DefaultXML"="<Plugins Order=\"CMyPhotos;CMusic;CPhone;CVoicemail;CClock;CText;CEmail;CAppointments\" CPRFileName=\"Titanium\" DisplayStyle=\"Titanium\" />"
"ExtensibilityXML"="<Plugins Order=\"CMyPhotos;CMusic;CPhone;CVoicemail;CClock;CText;CEmail;CAppointments\" CPRFileName=\"Titanium\" DisplayStyle=\"Titanium\" />"
that cointains double quotes? I tried """ but it didn't work...thanks!
edit: SOLVED USING single quote enclosure for value

Related

a cooking question

I just started cooking my own roms and want to know how to change the circled items in the pictures. Thanks, LuXx
LuXx said:
I just started cooking my own roms and want to know how to change the circled items in the pictures. Thanks, LuXx
Click to expand...
Click to collapse
Edit the registry key:
HKLM\System\State\Phone\Current Operator Name
Enjoy!
TaurusBullba said:
Edit the registry key:
HKLM\System\State\Phone\Current Operator Name
Enjoy!
Click to expand...
Click to collapse
Thank you so much on the first 2 pictures! Does anyone else know how to change the rom version description?
Oops, didn't look at the last picture. Same deal. Open up the registry and edit:
HKLM\Software\OEM - ROMVersion
TaurusBullba said:
Oops, didn't look at the last picture. Same deal. Open up the registry and edit:
HKLM\Software\OEM - ROMVersion
Click to expand...
Click to collapse
You are the man!!!!!
I must be tired. I forgot to also mention to soft-reset immediately following changing the carrier name. If you don't, it will revert back to the original.
TaurusBullba said:
I must be tired. I forgot to also mention to soft-reset immediately following changing the carrier name. If you don't, it will revert back to the original.
Click to expand...
Click to collapse
Found the string on my phone but everthing i try will not make it stay. I,ve tried to soft reset hold the power button and turn back on but with the XDA AT&T back. I was trying to find that string in the default.hv file but its not in there. This is the only thing close to that string =
[HKEY_LOCAL_MACHINE\System\State\Phone]
"Phone Status Flags"=dword:10
Is there another way to change while i'm making a rom?
LuXx said:
Found the string on my phone but everthing i try will not make it stay. I,ve tried to soft reset hold the power button and turn back on but with the XDA AT&T back. I was trying to find that string in the default.hv file but its not in there. This is the only thing close to that string =
[HKEY_LOCAL_MACHINE\System\State\Phone]
"Phone Status Flags"=dword:10
Is there another way to change while i'm making a rom?
Click to expand...
Click to collapse
Its there. Dont click on any subfolders under OEM, click on that folder itself.
mcorrie1121 said:
Its there. Dont click on any subfolders under OEM, click on that folder itself.
Click to expand...
Click to collapse
I see it in the reg on the pda but i dont see it in the default.hv file.
ok found out where I can change the XDA part of the current operators name.
HKLM\software\oem\phonesettings\longnameprefix or you can disable the XDA part by changing 1 to a 0 decimal on enable3glongnameprefix.
I do not know of this what you want, but you may be looking for this "HKLM\SOFTWARE\Microsoft\RIL\OperatorNames" where you want to add a key (string) with your operator code (i.e. "22601"="My network").
Some codes I found here:
http://www.firstphoneshop.co.uk/mob...ra-information---service-provider-codes.shtml
In my case I use:
<!-- Network custom name -->
<characteristic type="HKLM\SOFTWARE\Microsoft\RIL\OperatorNames">
<parm name="22601" value="Vodafone RO" datatype="string" />
</characteristic>
cheers,
dan
dan1967 said:
I do not know of this what you want, but you may be looking for this "HKLM\SOFTWARE\Microsoft\RIL\OperatorNames" where you want to add a key (string) with your operator code (i.e. "22601"="My network").
Some codes I found here:
http://www.firstphoneshop.co.uk/mob...ra-information---service-provider-codes.shtml
In my case I use:
<!-- Network custom name -->
<characteristic type="HKLM\SOFTWARE\Microsoft\RIL\OperatorNames">
<parm name="22601" value="Vodafone RO" datatype="string" />
</characteristic>
cheers,
dan
Click to expand...
Click to collapse
Hey!
This doesn't seem to work...

New tool : DSMBuilder

Hi,
I'm developed a tool named DSMBuilder.
It's a GUI tool for make dsm files.
Package = DSM File
You can :
- Create a new package (DSM file),
- Load a existing package and modify it,
- Load new certificate for package,
- Save the certifcate of package for use in another package,
- Load new dependency packages
- Remove certificate
- Rebuild the file and module list,
- Change the friendly name of package and other attributes.
- View list of Dependency packages and Shadow GUI List
- DSM Information updated with new structure.
- Remove one dependency package
- Clear list of dependencys package and shadow GUI list
- Beta version. Tested and generate a valid DSM file with all parts.
Changelog:
2008-08-08 :
- bug fix. DSM file not saved where attributes Hidden, System or ReadOnly is setting in file.
2008-07-28:
- Initial release.
Excuse me for my bad english.
what is the difference between this and the one in BuildOS
ather90 said:
what is the difference between this and the one in BuildOS
Click to expand...
Click to collapse
With this tool, is possible load/save certificates and change friendly name of dsm files, buildOS generate a basic dsm file missing certificate.
Thanks anmendes !
Updated DSMBuilder
Updated version, see post#1 for details
anmendes said:
Updated version, see post#1 for details
Click to expand...
Click to collapse
looks like a good tool. will test it out mate
thanks.
anmendes said:
Updated version, see post#1 for details
Click to expand...
Click to collapse
great tool bro
my observations/suggestions:
1. tool doesn't work on hidden files.
2. some menu's are not in english.
3. may be u can add an option to delete the certificate from dsm
4. is it possible to edit the dependent packages list?
htctouchp said:
great tool bro
my observations/suggestions:
1. tool doesn't work on hidden files.
2. some menu's are not in english.
3. may be u can add an option to delete the certificate from dsm
4. is it possible to edit the dependent packages list?
Click to expand...
Click to collapse
-----------------------
1 - I will correct this bug.
2 - Me say what are the options that are not in English? (So I can fix them)
3 - I will add this option
4 - I'm planning functions for add and delete dependent packages list and shadown GUI list
I'm too plannig another tool based in this (mixed of pkgtool and BuildOS)
and DSM files will be saves in a xml file (also as xxxxx.dsm.xml, incorporate the actual option.xml) for future edit and manipulations.
What do you think about this?
anmendes said:
I'm too plannig another tool based in this (mixed of pkgtool and BuildOS)
and DSM files will be saves in a xml file (also as xxxxx.dsm.xml, incorporate the actual option.xml) for future edit and manipulations.
Click to expand...
Click to collapse
good idea
anmendes said:
2 - Me say what are the options that are not in English? (So I can fix them)
Click to expand...
Click to collapse
check the screenshot for my observtion.
htctouchp said:
good idea
check the screenshot for my observtion.
Click to expand...
Click to collapse
A non english text is generate for my compiler with lib in portuguese language. I fix this
Updated version. See post #1 for details
anmendes said:
Updated version. See post #1 for details
Click to expand...
Click to collapse
Hey anmendes, a changelog would be helpful
anmendes said:
Updated version. See post #1 for details
Click to expand...
Click to collapse
many improvements mate . but i still have some observations:
1. tool doesn't modify the DSM if it is having 'read only', 'system' & 'hidden' attributes. i've to remove those attributes first if i want to modify a dsm. it would be better if the tool can modify the dsm without having to remove these attributes (at least we shouldn't need to remove 'system' and 'hidden' atrributes).
2. pls add the option to minimize the tool
and i've a question, what's the use of 'dependency package list' and 'shadow gui list'? what will happen if i remove all of these dependencies from a dsm like the dsm in Shell?
htctouchp said:
many improvements mate . but i still have some observations:
1. tool doesn't modify the DSM if it is having 'system' & 'hidden' attributes. i've to remove those attributes first if i want to modify a dsm. it would be better if the tool can modify them without having to remove these attributes
Click to expand...
Click to collapse
I tried to use this new build. I dont face this problem I can see all the files (hidden & system) when I refresh the file listing
ababrekar said:
I tried to use this new build. I dont face this problem I can see all the files (hidden & system) when I refresh the file listing
Click to expand...
Click to collapse
u didnt get my point
refresh the list, make some changes and try to save that DSM which is 'hidden' and 'system'.
Great tool, works like a charm,thanks a lot bro
htctouchp said:
u didnt get my point
refresh the list, make some changes and try to save that DSM which is 'hidden' and 'system'.
Click to expand...
Click to collapse
Well, actually I removed a few modules from the folders and opened the dsm in this proggy. Refreshed the list, it still shows me all the files
ababrekar said:
Hey anmendes, a changelog would be helpful
Click to expand...
Click to collapse
I am a novice in this matter, a changelog would be something like me post a new version, increasing their number and say what was modified? Because I'm already doing something like this, but without specifying the version number.
htctouchp said:
many improvements mate . but i still have some observations:
1. tool doesn't modify the DSM if it is having 'read only', 'system' & 'hidden' attributes. i've to remove those attributes first if i want to modify a dsm. it would be better if the tool can modify the dsm without having to remove these attributes (at least we shouldn't need to remove 'system' and 'hidden' atrributes).
2. pls add the option to minimize the tool
and i've a question, what's the use of 'dependency package list' and 'shadow gui list'? what will happen if i remove all of these dependencies from a dsm like the dsm in Shell?
Click to expand...
Click to collapse
1- 2 : I will check this and put a fix. Thank you!
Good question! The dependencies are used to indicate that packages must be present so that it functions properly. The "Shadow GUI List" is a mystery to be solved. The correct that we would be tools of manipulation of ROMS to examine it and say what is missing. You are in my plans to create a new tool to manipulate ROMS with these characteristics.
@anmendes, could you pls explain this:
what's the use of 'dependency package list' and 'shadow gui list'? what will happen if i remove all of these dependencies from a dsm like the dsm in Shell or any other dsm in SYS?
Click to expand...
Click to collapse

[App][WM6.5] CHome Visual Editor - compatible with all kinds of CPR

[31/08/2009] New release is avaliable, you can download the new verison from: http://cve.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=32228
CHome Visual Editor is a visual CPR editor for Windows Mobile 6.5.
** You need install .net 3.5 sp1 in your computer in order to run CVE. **
With CVE, you can edit:
Titanium
LS_AlarmScene
LS_LockScene
LS_PhoneAlertScene
LS_PhoneCallScene
LS_SimplePinScene
StartMenu_GridScene
For this release, you can:
Open CPR file visually and move elements visually.
Modify all properties of the selected element by the property grid on the right side.
Change & Save (auto) the screen resolution.
Change & Save (auto) the scale rate.
Undo/Redo
Setup folder mapping between PPC and your OS.
Import registry file to load the element values (text, image source)
Save the modification.
More functions not listed.
This release only provide two language resource. The embedded language is Chinese, en-US is provided. If your OS language is not en-US, you may need to open configuration.xml and add one line to display en-US:
<language>en-us</language>
or you will get Chinese character.
wow.. looks like very good application
downloading & trying it now!!!!
Looks good indeed! Just downloaded but I can't try it now...
Got some problem here, I can't open any .cpr file to edit???
morningmoon said:
Got some problem here, I can't open any .cpr file to edit???
Click to expand...
Click to collapse
do you mean the application crash when you open *.cpr? can you upload error.log file here under CVE folder? it's all about the exceptions, none private will recorded in this file.
<?xml version="1.0"?>
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<scale>1</scale>
<language>en-us</language>
<resolution>
<Width>240</Width>
<Height>320</Height>
</resolution>
<directory name="\Windows">
<mapping>Windows</mapping>
<mapping>E:\WindowsMobile\i780_21501_Kitchen\SYS\Lockscreen_DPI_96</mapping>
</directory>
<directory name="\Program Files">
<mapping>Program Files</mapping>
</directory>
</configuration>
Click to expand...
Click to collapse
Placed the language line in like above. But still no English.
Is there some thing we need to do more.
ebsbow said:
Placed the language line in like above. But still no English.
Is there some thing we need to do more.
Click to expand...
Click to collapse
This is strange, i copied your configuration and tested it in my comupoter, it works fine.
If you opened CVE and close it normally (the configuration will be saved again while cloing), the configuration should not not looks like your posted. the lanuguage should be the first element of configuration node. It may caused by path you placed CVE or permission issue.
JerryJiang said:
do you mean the application crash when you open *.cpr? can you upload error.log file here under CVE folder? it's all about the exceptions, none private will recorded in this file.
Click to expand...
Click to collapse
No. not crash, just can't get the Open File box to display, so I can't choose any file to open???
morningmoon said:
No. not crash, just can't get the Open File box to display, so I can't choose any file to open???
Click to expand...
Click to collapse
I never wrap the open file dialog. The open file dialog i am using is system provided, do you have any other WPF application in your computer that with a open file feature, if so, can you tested it whether it works fine?
error
Opening any CPR file the application is crashing. I am uploading the error log file. Please look and give a resolution.
Copied the "<language>en-us</language>" just below the configuration tag. But the problem is still the same.
All is in Chinees. is there anything else I need to check?
I have added the last error log.
ajeshm said:
Opening any CPR file the application is crashing. I am uploading the error log file. Please look and give a resolution.
Click to expand...
Click to collapse
The exception is caused by some color string of TextStage element in your CPR file, normally, i define the color in CPR file use the #FFxxxxxx pattern.
it seems that the color definition between WM and WPF have inconsistent rules. So can you look through the CPR file and try to find out whether there is any color definition in <TextStage/> section is not follow the rule?
I will update my code to fix the problem if you can kindlly post the inconsistant rule. Thx.
ebsbow said:
Copied the "<language>en-us</language>" just below the configuration tag. But the problem is still the same.
All is in Chinees. is there anything else I need to check?
I have added the last error log.
Click to expand...
Click to collapse
<?xml version="1.0"?>
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<language>en-US</language>
<enable_effect>true</enable_effect>
<scale>1</scale>
<resolution>
<Width>240</Width>
<Height>320</Height>
</resolution>
<directory name="\Windows">
<mapping>Windows</mapping>
</directory>
<directory name="\Program Files">
<mapping>Program Files</mapping>
</directory>
</configuration>
karim_31 said:
<?xml version="1.0"?>
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<language>en-US</language>
<enable_effect>true</enable_effect>
<scale>1</scale>
<resolution>
<Width>240</Width>
<Height>320</Height>
</resolution>
<directory name="\Windows">
<mapping>Windows</mapping>
</directory>
<directory name="\Program Files">
<mapping>Program Files</mapping>
</directory>
</configuration>
Click to expand...
Click to collapse
Thanks for posting your configuration. I should update my build package to include the language element instead of let the users update the xml by themselves.
ebsbow said:
Copied the "<language>en-us</language>" just below the configuration tag. But the problem is still the same.
All is in Chinees. is there anything else I need to check?
I have added the last error log.
Click to expand...
Click to collapse
Could you please try again with karim_31's configuration?
Unfortunately I don't have one. Still can't use this application
Any suggestion? What do I need to install for the open file to work?
Thanks!
JerryJiang said:
I never wrap the open file dialog. The open file dialog i am using is system provided, do you have any other WPF application in your computer that with a open file feature, if so, can you tested it whether it works fine?
Click to expand...
Click to collapse
The language works now,
Thanks, but the app seems to crash a lot when loading an cpr.
Disabling effects helps, but the apps crashes on other actions as well.
ebsbow said:
The language works now,
Thanks, but the app seems to crash a lot when loading an cpr.
Disabling effects helps, but the apps crashes on other actions as well.
Click to expand...
Click to collapse
Can you upload your error.log so that i can do some analysis to improve the quality of the application.
Sure. Here you go.
ebsbow said:
Sure. Here you go.
Click to expand...
Click to collapse
It's caused by color token:
http://forum.xda-developers.com/showpost.php?p=3952898&postcount=12
i will add more check of the token, by unless i get the inconsistant token, the color may not display correctly.
I cant even launch it
No error log... so where do i need to install all the files? it simply says that the app fails... thats all!
what im a doing wrong?
I set all in C:\ and the stwater added to windows directory

[APP][UTIL]wmDownloader

wmDownloader v0.2​
This application allows you to easily download files from One-Click-Hosters like rapidshare. It can be used to download your files overnight without use of PC, but remember to plug your PocketPC to charger.
I recomend turning of not cheap GPRS data connection in case of WiFi lost connection.
Application using michyprima's manila SDK.
User guide:
After first start go to "Config" tab, select destination folder for your files and click "Save". Now you can add files in "Files" tab or by editing file "files.txt" and then reloading it using "Menu->Reload files.txt".
When you added some files you can start download process. Files will be removed automaticly from list after download.
Known bugs:
- not all rapidshare error messages are parsed
- directory browser can't create new directory
- some minor UI bugs like formatting timer
Change log:
v0.2
- code prepared for multiple upload websites
- added config for download folder
- new UI
- .NET CF 3.5 used
v0.1
- initial write
Screenshots:
View attachment 275558View attachment 275559View attachment 275560
If you like this application, donate. Donations will be used for making premium accounts.
Donate links:
PayPal EUR
PayPal USD
PayPal PLN
Regrds,
Pawel
First
Nice idea, will test it.
edit: Works, but the problem with my device is , that i haven´t got a Storage Card, it called "Interner Speicher" on my german Diamond. So the files will download only to device storage -.-
Another problem is, that the device turn off, when I am downloading, so it would be nice if you can put in a function, that disable this,during the app is running.
And of course if possible more hoster support, for example netload, upload..
Thanks and this is another link
-info.txt
Rapidshare downloader.rar
Many thanks, elektro255, it simply WORKS!
There is a file, that for the past weeks I never got a chance from crapidshare to downlead it,I was thinking that the site will never give a slot for this file. But last night your lite tool did it. After about 20 times trying by itself, it downloaded the file while I was sleeping.
Here's some minor issues and suggestions:
Like others found, in my Chinese ROM, it created a folder and downloaded the file to main memory.
On my QVGA device, the font size for displaying details is too small.
Is that possible in future release to make it work with other sites like mediafire etc. I don't really have demand for this myself, but maybe others have better suggested site.
Last thing is that your app does not have an icon and the shortcut looks not good in start menu. If you want to keep the tiny size of it and does not want to include another file into it, you may just use one of the system icons that comes with shellres etc.
Anyway it already did what is expected to do.
Premiumaccount and "Speicherkarte" support - would be nice
elektro255 said:
Hi,
I made simple app to download rapidshare.com files over night.
1. App is just pre pre alpha version but works for now
2. I'm not planning to continue work on this app as long as it works fine for me [but if you have good idea what can be included in next version you can write on this topic]
3. For this app is required \Storage Card\ folder.
App written in C# .NET 2.0, tested on HTC Topaz
Downloaded files are stored in \Storage Card\Downloads\
Rapidshare links are stored in \Storage Card\Downloads\files.txt (after edit via external editor, app have to be restarted)
I advise to disable GPRS connection (to avoid big bill in case of wifi disconnected) and to conect charger
http://www.multiupload.com/5VXCHSZZ81
Regrds,
Pawel
Click to expand...
Click to collapse
very good job done there pawel, open up your donation box mate ! you deserve a cherry
This software doesn't support Premium Account?
Software is working fine on qvga...but fonts are pretty small...if possible make it user freindly...thanks
Thank you for the excellent program. I apologize for my English. Not bad, it would be in the input line to copy-paste, and a great author, please do similar programs on letitbit.net and depositfiles.com. Many thanks in advance.
Thanks for the good job! Could you make it possible to choose the directory path to save the file?
Nice work Bro
Small little app but works like a champ!! Works just like rapidshare auto downloader (for those who don't know, just google it coz this is a really convenient software for those who use rapidshare often) but in windows phone version.
Nice job
I decided to continue work on this application. So v0.2 you can download in first post.
Currently I'm working to support other One-Click-Hosters like hotfile, so check this thread time-to-time.
This seems like a really neat program, will be using now!
Thanks a lot!
elektro255 said:
wmDownloader v0.2​
This application allows you to easily download files from One-Click-Hosters like rapidshare...
Click to expand...
Click to collapse
What other hosterS(!) does it support?
darfri said:
What other hosterS(!) does it support?
Click to expand...
Click to collapse
it will in feature
Search
Hey great idea, but yea writing the web address is a pain, copy n paste would be good, but how about incorporating search!!!
Maybe hook up to a few search sites, use their code, and then be able to click on it, which inputs the address into what you already have!
Just a thought lol
Poodz
The lack of copy and paste is the one thing that annoys me about an otherwise great application!
elektro255 said:
it will in feature
Click to expand...
Click to collapse
You probably know this already and it won't help you much neither because it is java but anyway... http://svn.jdownloader.org/projects/show/jd
Awesome! I really got impressed when I saw that somebody actually make a downloader for WM. I have a question though, does this work on non-touch devices? [i600, HTC S620/Excalibur]

WM7Full.bin taken apart..

If anybody is interested in grabbing the ringtones/wallpaper/strange sample icons from WM7, it's possible to reverse engineer the BIN file to get at the raw files that make up WM7.
Happy to post steps if anybody wants to get at this stuff, if not please see wallpapers and ringtones attached to this post. Hopefully helpful to somebody out there.
thanks... please post how to extract the bin for noobs!
Of course... you need:
- The BIN file. In this case I used WM7Full.bin available from several sites
- viewbin.exe from Microsoft Platform SDK
- cvrtbin.exe from Microsoft Platform SDK
- dumprom.exe from Microsoft Platform SDK
You may also be able to find these utilities using Google.
Use viewbin.exe to analyse the file:
viewbin.exe -t wm7full.bin
You'll see an image start and length. Start was 0x81000000 with length 0x0496A294 for the specific file I used. Plug these values into cvrtbin.exe:
cvrtbin.exe -r -a 0x81000000 -l 0x0496A294 -w 32 wm7full.bin
(obviously substituting the -a and -l value for those obtained from viewbin. Leave -w as 32)
This will produce wm7full.nb0. Plug this file into dumprom.exe:
dumprom.exe -d c:\output wm7full.nb0.
And there you have it, the files will be chucked into c:\output in their entirety.
Thanks for this one, some good sounds inside
I can't find viewbin.exe, cvrtbin.exe, and dumprom.exe anywhere, can someone post a link?
EDIT: Or, better yet, could someone just upload the dump?
EDIT 2: Okay, I found the tools, but the dump didn't work. Any suggestions?
Could you provide details of the error that you're seeing please?
To answer your other questions, I'm not planning to upload the whole dump as it's copyright and against the forum rules. Same goes for the tools, they're part of the Platform Builder SDK.
akersj said:
Happy to post steps if anybody wants to get at this stuff, if not please see wallpapers and ringtones attached to this post. Hopefully helpful to somebody out there.
Click to expand...
Click to collapse
Thank you very much
Not to be a buzzkill, but these are the same ringtones and sounds from 6.1/6.5
Though I missed flamenco fire, thanks for bringing it back
mazzarin said:
Not to be a buzzkill, but these are the same ringtones and sounds from 6.1/6.5
Though I missed flamenco fire, thanks for bringing it back
Click to expand...
Click to collapse
LOL.. I didn't try 6.1/6.5, just saw the BIN file screaming to be taken apart! Flamenco Fire ... hmm interesting
akersj said:
Could you provide details of the error that you're seeing please?
To answer your other questions, I'm not planning to upload the whole dump as it's copyright and against the forum rules. Same goes for the tools, they're part of the Platform Builder SDK.
Click to expand...
Click to collapse
There is no error message; I run the tools exactly as described, which works, but when I look for "C:\output", I can't find it. Otherwise everything is fine.
Fdo35 said:
There is no error message; I run the tools exactly as described, which works, but when I look for "C:\output", I can't find it. Otherwise everything is fine.
Click to expand...
Click to collapse
You will need to substitute c:\output for a directory of your choice that exists on your system. Please also ensure that you are using the offset and length appropriate to the bin file you are using.
Fdo35 said:
There is no error message; I run the tools exactly as described, which works, but when I look for "C:\output", I can't find it. Otherwise everything is fine.
Click to expand...
Click to collapse
as akersj says above... you need to create the folder c:\output first or use another folder that already exists. The tools will not create a new directory for you.
Oh, I see now! I can't believe I didn't try that!
Well, anyway, this is pretty interesting. Especialy files like 'FileBrowser.exe,' FileBrowserCM.dll,'and 'NativeInstallerHost.exe' could be of some great use to us.

Categories

Resources