Registry Key Request - HTC Tornado

Could someone please upload a .reg file containing the values of "HKLM\Software\Microsoft\.NETCompactFramework" registry keys? I've accidentally deleted that key and reinstalling .NET CF 2 SP2 does not do any good - I think that some CF v1 keys might be missing!
Thanks in advance!
PS. The error I get (even with CF 2 installed) is about a "Microsoft.WindowsMobile.Configuration" token missing, so I presume it's an error of the ROM-included CF 1.

http://wmn.nm.ru/Qtek/Microsoft_NETCF1.rar
Good luck!

Thank you! But I cannot import the file...! Could you please export ONLY "HKLM\Software\Microsoft\.NETCompactFramework" (the reg file you gave me contains the whole HKLM\Software\Microsoft key) using Resco Explorer/Registry Editor?
Thanks again!

Try this: http://wmn.nm.ru/Qtek/Microsoft_NETCF1_WinCE.rar
I've made it by means of PHM Registry Editor. There is no such фигня as Resco Registry Editor on my board

Problem solved using Resco Explorer and another Qtek 8310. Thanks for your help!!!!
Here's the registry file for anyone having the same problem...

ZlydenGL ;-) jumorist!

Related

registry file wm6

Hi, i tried find registry file in wm6, but i dont know, where is it? can someone tell me which file contains registry?
ftoz said:
Hi, i tried find registry file in wm6, but i dont know, where is it? can someone tell me which file contains registry?
Click to expand...
Click to collapse
You'll need to install an app like tre090pReg editor or TotalCommander. With these you can explore and modify the reg files.
BE BLOODY CAREFULL
Regards
Mav
Yes, i know this way. But i exported wm6 register to pc and then i edited it. I have now rebuilt register, but i dont know, where can i put it. I tried search it tc file with *.reg but no results. can someone help me ?
Yes, i know this way. But i exported wm6 register to pc and then i edited it. I have now rebuilt register, but i dont know, where can i put it. I tried search it tc file with *.reg but no results. can someone help me ?
Just import your REG file using some registry editor, Resco for example.

No registry editor in Resco Explorer

Hi,
I have a MDA Vario IV (T-Mobile version of HTC Touch pro) and I installed Resco Explorer 2008 but i can't find the registry editor in it.
I also tried to install the editor manually (registrymui_p.arm.cab) and it says that it is succesfully installed but there is still no Registry Editor option in Resco Explorer.
Any idea?
best regards
asejox
EDIT: I do not want to use PHM Registry Editor because I need the import function.
I have solved the problem. I removed Resco Explorer, then installed it from the Computer. It said the installation was ok, but there was no Resco Explorer on the phone. Then I installed the Explorer cab manually and then the Registry Editor cab and now it works.
EDIT: Now there is no Today plugin. In "add or remove programmes" it says today plugin is installed but I can't find it.
yes, you need the addin cabs provided on the site:
http://resco.net/pocketpc/explorer/downloads.asp
today: http://76.12.192.99/downloads/pocketpc/explorer/en/retodayen_p.arm.cab
ftp: http://76.12.192.99/downloads/pocketpc/explorer/en/ftpaddinen_p.arm.cab
registry: http://76.12.192.99/downloads/pocketpc/explorer/en/registryen_p.arm.cab
asejox said:
EDIT: Now there is no Today plugin. In "add or remove programmes" it says today plugin is installed but I can't find it.
Click to expand...
Click to collapse
Go to Start -> Settings -> Today and check Resco Exolorer Plugin to be visible.

Issues with addin reg-information

Hey there,
I've been having issues with adding a reg file's information to my registry. Any file explorer I used (File explorer which came along with the ROM, Resco, Total Commander and PHM) just opened the file but did not add the information to registry. Any clues how to fix this?
Much appreciated.
Cheers
Try using Resco Explorer.
Normaly it does a great job!
Try reading what's standing in between the parentheses.
Cheers
First: install Resco Explorer.
Second: install the registry add-in.
Third: soft-reset.
Now just click on the reg. file and it will be add automaticaly to the registry!
P.S.: i think MemMaid also does the job, but i'm not sure.

How to delete a registry value with a .reg file?

Hi XDA ppl,
How to delete a registry value with a .reg file? The standard hyphen approach doesn't seem to work. I tried it like this:
[HKEY_LOCAL_MACHINE\Software\Test]
"TestItem"=-
This should delete the TestItem but it refuses to do so. Does anyone knows the trick?
I don't know how to do it with a reg key, but you can do it this way with a mortscript:
Code:
RegDelete("HKLM","\Software\Test","TestItem")
here you go!
cruiserrr said:
here you go!
Click to expand...
Click to collapse
Like I said in my first post: "The standard hyphen approach doesn't seem to work."
gotobigo said:
Like I said in my first post: "The standard hyphen approach doesn't seem to work."
Click to expand...
Click to collapse
Sounds odd! can you tell me the heading of your provxml file? it is xml or provxml? what tool do you use to import? can you post the actual code of the file?
Hi, usually I create a cab file from .reg files with CeRegEditor (ceregeditor.mdsoft.pl). If I create new keys/ values everything works just fine. Just deleting doesn't work.
In the end I installed the kilmist registry editor trial to double check cause it can import .reg files directly, but its the same problem: deleting doesn't work.
Here the exact code of the files I tried:
-- File 1: create a test key with 2 values... works fine ------------------
REGEDIT4
[HKEY_LOCAL_MACHINE\Software\Test]
[HKEY_LOCAL_MACHINE\Software\Test]
"TestItemOne"=dword:00000001
"TestItemTwo"=dword:00000001
-- File 2: try to delete 1 value... fails ---------------------------------
REGEDIT4
[HKEY_LOCAL_MACHINE\Software\Test]
"TestItemOne"=-
-- File 3: try to delete the whole key... fails too ----------------------
REGEDIT4
[-HKEY_LOCAL_MACHINE\Software\Test]
your files seem ok.
while you find th solution I recommend to add postxml to your cab to delete the unwanted keys. nocharacteristic and nopar should allow you to delete whatever needed.
two hints: check the encoding of the files and check the order. make one cab for the additions and another for the substractions just in case the cab tries to delete the key before it is created. sorry i can not help more !! please, pm when you find what was it
Try:
Save your .reg file as Unicode not ANSI, start your .reg file with
Windows Registry Editor Version 5.00
In the first line. And leave one blank empty line at the end of the .reg file.
Did it work?
fluffiey said:
Try:
Save your .reg file as Unicode not ANSI, start your .reg file with
Windows Registry Editor Version 5.00
In the first line. And leave one blank empty line at the end of the .reg file.
Did it work?
Click to expand...
Click to collapse
Nope, doesn't work either.
I put Windows Registry Editor Version 5.00 in the first line, encoded it 8-bit unicode and made sure theres a blank line at the end (always did that). all to no avail.
Btw, I'm running WM 6.1 on a TP2. I really wonder if its working at other phones / WM versions, or this is a "universal" problem.
thx anyway, Tobias

Where does Resco File Explorer store its serial/license number

As I flash my HD2 weekly (sometimes more frequently ) I try to adapt my program cabs with my settings and my registration info. This way I don't have to adjust my program settings and registrationinfo manualy. This saves a lot of time when flashing a new rom.
For most programs this is working perfect but for the resco program's I can't find the registration info in the register. Does anyone know where Resco File Explorer stores its serial/license number?
you could try kheb, maybe it'll help
p107r0 said:
you could try kheb, maybe it'll help
Click to expand...
Click to collapse
Thanks, I will try it.
Hi. Just have a look into your registry (use CeRegEditor or sth.). Have a look there for HKCU/Software/Resco, or HKLM/Software/Resco - somewhere you'll find the entry that saves your reg-info. I found it for every program that I bought and use (and these are quite a lot). If you won't find it within the registry, then you will have to backup your whole program-folder as it can also contain registration-info.
Hi.
Resco Serials are stored in a file. Go in Windows Dir and copy the File wmtrigger.dat. After you flash new Rom you must install Resco Programs and then copy the file into the Windows dir. Now your Programs are registered. Make it all the time with Sashimi and everything works fine
Mfg Uro
most keys are stored in the registry dude... what i do to avoid re-registering all my apps and games... i use the registry editor plugin by resco, search the registry for all the serials after i entered them, then copy the key to the storage card.... transfer the key to my desktop, then import the key to the cab using WinCE cab manager... this way you wont have to manually restore the keys all over again... i save myself this trouble bcos i have over 30 apps and games
i also did this with resco file man...
Urokinase said:
Hi.
Resco Serials are stored in a file. Go in Windows Dir and copy the File wmtrigger.dat. After you flash new Rom you must install Resco Programs and then copy the file into the Windows dir. Now your Programs are registered. Make it all the time with Sashimi and everything works fine
Mfg Uro
Click to expand...
Click to collapse
Hi,
Thanks this is working. It works for all the resco programs which are using the owner info of the device. Essential is also to put the owners name in your device. I've made a cab with the wmtrigger.dat + the owner info and this is working perfect now.
Thanks again for the info.

Categories

Resources