How to delete a registry value with a .reg file? - General Questions and Answers

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

Related

VJDialer & TomTom menu

Hello! if you create in \TomTom\SdkRegistry\ 2 files called, for example, mortplayer.bmp and mortplayer.cap, and edit this with notepad as follow:
AppName|MortPlayer.exe|
AppPath|\Scheda di memoria\Mort's MortPlayer\|
AppbmpnFile|mortplayer.bmp|
AppMainTitle|Avvia MortPlayer|
COMMAND|CMD||mortplayer.bmp|MortPlayer|
Tomtom will show a 4th menu with your bmp (72x48, 24 bit, 72dpi) and the link to the application.
Now i want to insert a link to VJDialer and dial a number with one click.
Here is, for example, the code:
AppName|VJDialer.exe 0123456789|
AppPath|\Storage\|
AppbmpnFile|vjdialer.bmp|
AppMainTitle|Avvia VJDialer|
COMMAND|CMD||vjdialer.bmp|FRIEND_NAME|
Now... this method does not work.
Vijay Help ME! can i do this?
I halso have tried to create a link to vjdialer, put it into sdkregistry dir, and execute it from .cap file:
AppName|VJDialer.lnk|
AppPath|\TomTom\SdkRegistry\|
AppbmpnFile|vjdialer.bmp|
AppMainTitle|Avvia VJDialer|
COMMAND|CMD||vjdialer.bmp|Friend|
and
AppName|VJDialer.lnk|
AppPath|\Storage\|
AppbmpnFile|vjdialer.bmp|
AppMainTitle|Avvia VJDialer|
COMMAND|CMD||vjdialer.bmp|Friend|
But with no results.
SkizZO: I'm afraid I don't use TomTom (find the poll I'm running to decide if I should buy the Mio with built in GPS!).
However, check your .lnk file. If it launches correctly when run, then I would try copying it into your MortPlayer folder, and editing the entry you know works for mortplayer, and just make it launch your VJDialer.lnk instead (since you know the other settings work).
Perhaps TomTom can't run command lines? That'd be a pain and require some thinking about?
This wasn't too helpful:
http://www.opentom.org/Menu_structure
V
You can't use links and you can't use parameters....
You can only start a exe file, that's it...
What you could do :
- Create a mortscriptfile TTdial.mscr
run vjdialer.exe 0123456789
make a copy of the autorun.exe that comes with mortscript, rename it TTdial.exe
Make the .CAP file as you wish and make it run TTdial.exe
The mortscript autorun.exe always starts a .mscr scriptfile with the same name, so you can have TTdial1.mscr + TTdial1.exe, TTdial2.mscr + TTdial2.exe etc.
WoW Thnx to aLL!
Hemm... wich is the exact shyntax of the mscr script?
...and.. can i use Onlu Autorun.exe (and autorun.mscr) without install anything?
SkizZO: I've made an app just for you, to make this a lot easier, I hope!
VJBrisk - http://forum.xda-developers.com/viewtopic.php?t=50509&start=0&postdays=0&postorder=asc&highlight=
Basically, setup your VJDialer shortcut, rename it to VJTarget.lnk, and copy the file VJBrisk.exe into the same folder.
Get TomTom to launch VJBrisk, and VJBrisk will launch VJTarget.
Let me know if that makes sense. But the autorun solution is still very neat.
V
oops double post
Thanx for all. In order:
Mortscript works well, the exact shyntax is (in mscr file):
run [PATH]\VJDialer.exe , 0123456789
Thanx vijay, i will try NOW your app.... only a question:
VJbrisk.exe launch only one vjtarget.lnk or just rename it (exe) with the same name of the link to have more than 1 phone link?
(es Vjbrisk1.exe call Vjbrisk1.lnk, Vjbrisk2.exe call VJbrisk2.lnk etc ?
sorry 4 my english

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.

Cab2OEM v0.9

Couldn't find an app that could convert CAB's to OEM packages (in an easy way) so I made my own...
...only supporting CAB's with _setup.xml files
Newest version 0.9
Cab2OEM.exe
evalu8t0r said:
Couldn't find an app that could convert CAB's to OEM packages (in an easy way) so I made my own...
...only supporting CAB's with _setup.xml files
Cab2OEM v0.0.0.2
Click to expand...
Click to collapse
this looks great man,
what language is it coded in?
i'm just wondering because I would like to get into this coding business myself
EDIT: I just tried a test cabinet file (opera mini) which contains a _setup.xml file, and it said that it did not? same results in a different .cab that had an _setup.xml file in it
mbarvian said:
this looks great man,
what language is it coded in?
i'm just wondering because I would like to get into this coding business myself
EDIT: I just tried a test cabinet file (opera mini) which contains a _setup.xml file, and it said that it did not?
Click to expand...
Click to collapse
Coded in vb.net (3.5) (Visual Studio 2008)
I've tested it on every CAB file I had (dumped a copy of all my cab files in c:\temp and ran Cab2OEM.EXE C:\temp\*)
Where can I download opera mini cab file to test it?
evalu8t0r said:
Coded in vb.net (3.5) (Visual Studio 2008)
I've tested it on every CAB file I had (dumped a copy of all my cab files in c:\temp and ran Cab2OEM.EXE C:\temp\*)
Where can I download opera mini cab file to test it?
Click to expand...
Click to collapse
what's an example of what you used? here's what I did:
Code:
cab2oem opera.cab opera
mbarvian said:
what's an example of what you used? here's what I did:
Code:
cab2oem opera.cab opera
Click to expand...
Click to collapse
Hmm... first test and you find a bug... I must be an idiot since a simple thing like that is not working...
Try:
Code:
cab2oem c:\temp\opera.cab
...v0.0.0.3 comming up soon
evalu8t0r said:
Hmm... first test and you find a bug... I must be an idiot since a simple thing like that is not working...
Try:
Code:
cab2oem c:\temp\opera.cab
...v0.0.0.3 comming up soon
Click to expand...
Click to collapse
ok, this worked better, but I still got this error:
Code:
Conversion from type 'NBNULL' to type 'String' is not valid
can't wait for v0.0.3! i think this app has some great potential!
mbarvian said:
ok, this worked better, but I still got this error:
Code:
Conversion from type 'NBNULL' to type 'String' is not valid
can't wait for v0.0.3! i think this app has some great potential!
Click to expand...
Click to collapse
I'm gonna need that cab file to see what's going on... got a link?
evalu8t0r said:
I'm gonna need that cab file to see what's going on... got a link?
Click to expand...
Click to collapse
here:
http://www.filesend.net/download.php?f=931d689b67ab4cefde3ac0c42d691e5d
I just renamed it to opera.cab to make it easier when typing it in
mbarvian said:
here:
http://www.filesend.net/download.php?f=931d689b67ab4cefde3ac0c42d691e5d
I just renamed it to opera.cab to make it easier when typing it in
Click to expand...
Click to collapse
v0.0.0.3 is up
Some problems resolved but opera.cab still won't work as it contains a 'multiplestring' registry key which I'm not sure how to decode
Any chance you have an OEM package for this allready? Could you send me the RGU file?
evalu8t0r said:
v0.0.0.3 is up
Some problems resolved but opera.cab still won't work as it contains a 'multiplestring' registry key which I'm not sure how to decode
Any chance you have an OEM package for this allready? Could you send me the RGU file?
Click to expand...
Click to collapse
i do, here's the rgu file
Code:
REGEDIT4
[HKEY_CLASSES_ROOT\.jad]
@="jadfile"
"Content Type"="text/vnd.sun.j2me.app-descriptor"
[HKEY_CLASSES_ROOT\jadfile]
[HKEY_CLASSES_ROOT\jadfile\DefaultIcon]
@="\\windows\\jbed.exe,0"
[HKEY_CLASSES_ROOT\jadfile\Shell]
[HKEY_CLASSES_ROOT\jadfile\Shell\Open]
[HKEY_CLASSES_ROOT\jadfile\Shell\Open\Command]
@="\"\\windows\\jbed.exe\" -DFile.maxStorageSize=20M -ginstall \"file:\\%1\""
[HKEY_CLASSES_ROOT\.jar]
@="jarfile"
"Content Type"="application/java-archive"
[HKEY_CLASSES_ROOT\jarfile]
[HKEY_CLASSES_ROOT\jarfile\Shell]
[HKEY_CLASSES_ROOT\jarfile\Shell\DRMOpen]
[HKEY_CLASSES_ROOT\jarfile\Shell\DRMOpen\Command]
@="\\windows\\jbed.exe\" -DFile.maxStorageSize=20M -ginstall \"file:\\%1\""
[HKEY_CLASSES_ROOT\jarfile\Shell\Open]
[HKEY_CLASSES_ROOT\jarfile\Shell\Open\Command]
@="\\windows\\jbed.exe\" -DFile.maxStorageSize=20M -ginstall \"file:\\%1\""
[HKEY_CLASSES_ROOT\jarfile\Shell\Save]
[HKEY_CLASSES_ROOT\jarfile\Shell\Save\Save Location]
@="\\windows"
[HKEY_CLASSES_ROOT\jarfile\DefaultIcon]
@="\\windows\\jbed.exe,0"
[HKEY_CLASSES_ROOT\CLSID]
[HKEY_CLASSES_ROOT\CLSID\{8F57C2D0-4C95-4945-A4C4-0B7548587796}]
[HKEY_CLASSES_ROOT\CLSID\{8F57C2D0-4C95-4945-A4C4-0B7548587796}\InprocServer32]
@="\\windows\\ieplugin.dll"
"ThreadingModel"="Both"
[HKEY_CLASSES_ROOT\CLSID\{8F57C2D0-4C95-4945-A4C4-0B7548587796}\TypeLib]
@="{A847F3EE-CAF9-46ed-94D2-0CF149F1209E}"
[HKEY_CLASSES_ROOT\CLSID\{8F57C2D0-4C95-4945-A4C4-0B7548587796}\Version]
@="1.0"
[HKEY_CLASSES_ROOT\PROTOCOLS]
[HKEY_CLASSES_ROOT\PROTOCOLS\Filter]
[HKEY_CLASSES_ROOT\PROTOCOLS\Filter\text/vnd.sun.j2me.app-descriptor]
"CLSID"="{8F57C2D0-4C95-4945-A4C4-0B7548587796}"
[HKEY_CLASSES_ROOT\PROTOCOLS\Filter\text/vnd.sun.j2me.app-descriptor; charset=utf-8]
"CLSID"="{8F57C2D0-4C95-4945-A4C4-0B7548587796}"
[HKEY_CLASSES_ROOT\PROTOCOLS\Filter\application/java-archive]
"CLSID"="{8F57C2D0-4C95-4945-A4C4-0B7548587796}"
[HKEY_CLASSES_ROOT\PROTOCOLS\Filter\text/x-pcs-gcd]
"CLSID"="{8F57C2D0-4C95-4945-A4C4-0B7548587796}"
[HKEY_CLASSES_ROOT\MIME]
[HKEY_CLASSES_ROOT\MIME\Database]
[HKEY_CLASSES_ROOT\MIME\Database\Content Type]
[HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/java-archive]
"Extension"=".jar"
[HKEY_LOCAL_MACHINE\SOFTWARE]
[HKEY_LOCAL_MACHINE\SOFTWARE\Apps]
[HKEY_LOCAL_MACHINE\SOFTWARE\Apps\Esmertec Java]
[HKEY_LOCAL_MACHINE\SOFTWARE\Apps\Esmertec Java\Properties]
"microedition.ua.prefix"=""
"microedition.ua.postfix"=""
"microedition.ams.iconsize"="24"
"DestNet"="0"
"File.basedir"="\\windows\\"
"File.rootdir"="\\windows\\"
[HKEY_LOCAL_MACHINE\SOFTWARE\Tegic]
[HKEY_LOCAL_MACHINE\SOFTWARE\Tegic\eT9]
"CustomClassNames"=hex(7):4a,42,45,44,5f,54,45,58,54,46,49,45,4c,44,3f,3f,3f,\
3f,3f,3f,3f,3f,3f,3f,3f,3f,00,00
[HKEY_LOCAL_MACHINE\SOFTWARE\OEM]
[HKEY_LOCAL_MACHINE\SOFTWARE\OEM\MASD]
"JbedJava_3_1"="0_0_20080222_3_1"
mbarvian said:
i do, here's the rgu file
Code:
[HKEY_LOCAL_MACHINE\SOFTWARE\Tegic\eT9]
"CustomClassNames"=hex(7):4a,42,45,44,5f,54,45,58,54,46,49,45,4c,44,3f,3f,3f,\
3f,3f,3f,3f,3f,3f,3f,3f,3f,00,00
Click to expand...
Click to collapse
New version 0.0.0.4 up
Can't seem to figure out why your RGU files "CustomClassNames" ends with 00,00... if you open _setup.xml in a hex editor it's 80,80... also the \ in the middle makes no sense to me...
EDIT:
Found this regarding the \
"Large Value Data Strings can span onto more than one line, in which case each line (except the last one) is terminated by a comma (,) followed by a SINGLE backslash mark (\) and consecutive lines are separated by carriage returns (CR)"
...so it's not important
EDIT:
http://www.microsoft.com/express/product/default.aspx should get you started with some coding if that's the route you want to go - Express editions are free
evalu8t0r said:
New version 0.0.0.4 up
Can't seem to figure out why your RGU files "CustomClassNames" ends with 00,00... if you open _setup.xml in a hex editor it's 80,80... also the \ in the middle makes no sense to me...
Click to expand...
Click to collapse
the '\' is used to break a line and multiplestring values are terminated with a double zero byte, one per string and one for the whole string, you can find this info on msdn btw...
worstenbrood said:
the '\' is used to break a line and multiplestring values are terminated with a double zero byte, one per string and one for the whole string, you can find this info on msdn btw...
Click to expand...
Click to collapse
Thanks
I see that (http://msdn.microsoft.com/en-us/library/ms724884(VS.85).aspx)
But I don't understand why I'm seeing 4A4245445F544558544649454C443F3F3F3F3F3F3F3F3F3F3F3FEF8080 and not 4A4245445F544558544649454C443F3F3F3F3F3F3F3F3F3F3F3FEF0000 when looking at the _setup.xml file in a hex editor. Any ideas?
I'm using System.Text.Encoding.UTF8.GetBytes to read the string and converting each of them to a string (using ToString("X2"))
The RGU file mbarvian posted has 0000 in the end ...
hello
great tool bro
mods this should be a sticky or kaiser wiki
evalu8t0r said:
Couldn't find an app that could convert CAB's to OEM packages (in an easy way) so I made my own...
...only supporting CAB's with _setup.xml files
New version 0.0.0.4
Cab2OEM.exe
Click to expand...
Click to collapse
jahrami said:
hello
great tool bro
mods this should be a sticky or kaiser wiki
Click to expand...
Click to collapse
Thanks... bro
I'm not sure v0.0.0.4 is a fully working version - it needs more testing
V1.0.0.0 could be a sticky candidate - Still needs some work to be perfect
evalu8t0r said:
Thanks... bro
I'm not sure v0.0.0.4 is a fully working version - it needs more testing
V1.0.0.0 could be a sticky candidate - Still needs some work to be perfect
Click to expand...
Click to collapse
Nice app, I'll have to give this a go when I get time to start cooking again.
I've added it to wiki: http://wiki.xda-developers.com/index.php?pagename=HTC_Kaiser#ROMx20.Cooking
I'm not too sure about a sticky, no other ROM cooking tools are. Just my 2c's.
Dave
DaveShaw said:
Nice app, I'll have to give this a go when I get time to start cooking again.
I've added it to wiki: http://wiki.xda-developers.com/index.php?pagename=HTC_Kaiser#ROMx20.Cooking
I'm not too sure about a sticky, no other ROM cooking tools are. Just my 2c's.
Dave
Click to expand...
Click to collapse
Once you get cooking let me know how it runs for you
well, I'm very glad to say that I have not had any problems with v0.0.0.4
great job and I look forward to future releases man
There are some flaws in the conversion. Hopefully, this can be fixed in the next version. Here's the description of the flaws:
1. For "\" that is specifying a path, the rgu should have "\\". For eg. "\Windows\Cookies" should be "\\Windows\\Cookies".
2. For " that is specifying a long path, the rgu should have "\". For eg. ""jbed.exe" -m %1" should be "\"jbed.exe\" -m %1".
Another flaw for registry with DWORD key. It produces the RGU file which uses decimal value in the DWORD key, which is completely wrong. Hopefully this can be fixed in next version, too.

WM 6.1 BJ 2 (can't edit cpr, reg)

I have searched for hours on this, and I bet it is right under my nose, but i could not find it.
I upgraded my BJ2 with windows mobile 6.1 standard. I have added PHM reg editor, CHome Config. I cannot edit the reg, and chrome config gives me errors when starting saying it can't write to reg.
I am trying to figure out how I can edit my cpr files cause right now, 6.1 will not let me over write or edit the file.
Any idea of what I am missing?
TIA
-Z-
Ok i figured out how to make the CHome Config work. never mind that worked for 1 time. but i can't make it work again. getting error back on CHome Config again saying it cannot write to registery.
this is what I did for that:
HKLM/Security/Policies/Policies
key 00001005 changed value 16 to 40
still can't get the *.cpr file over wrote or copied to the windows folder. The error says I don't have permission to replace it.
zseen said:
Ok i figured out how to make the CHome Config work. never mind that worked for 1 time. but i can't make it work again. getting error back on CHome Config again saying it cannot write to registery.
this is what I did for that:
HKLM/Security/Policies/Policies
key 00001005 changed value 16 to 40
still can't get the *.cpr file over wrote or copied to the windows folder. The error says I don't have permission to replace it.
Click to expand...
Click to collapse
You can't overwrite it via WMDC anyway
To unlock a registry to overwrite it via ActiveSync or device's File Explorer (Resco Explorer):
Download regeditSTG2 which is digitally signed: http://4pda.ru/forum/attach/387522/regeditSTG2.zip
Then install it and change some registry values:
HKEY_LOCAL_MACHINE\Security\Policies\Policies\00001001 = 2
-> change to 1
HKEY_LOCAL_MACHINE\Security\Policies\Policies\00001005 = 16
-> change to 40
HKEY_LOCAL_MACHINE\Security\Policies\Policies\00001017 = 128
-> change to 144
HKEY_LOCAL_MACHINE \Security\Policies\Policies
-> create new key "0000101a": Dword = 1
HKEY_LOCAL_MACHINE \Security\Policies\Policies
-> create new key "0000101b": Dword = 1"
Click to expand...
Click to collapse
Erofich, I tried that and change those values and added the keys. Still not working.
I still can't edit, delete, copy in the windows directory of the phone.
have you did a reboot of your device after these changes?
yep...
the file in ur link is broken. so I used CeRegEditor changed all the things fthat u mentioned and done a soft reset, plus I even tried turning the phone off and back on. still can't do anything in the windows folder.
zseen said:
still can't do anything in the windows folder.
Click to expand...
Click to collapse
What app are you using - WMDC or ActiveSync?
ActiveSync - but wait, i am on vista so really I am using WMDC
I can't use activesync on vista.
I tried using the file explorer on the phone.
I first try to copy the edited file over the no edited file.. Error - I am making sure that the home screen is not set to Sliding panel, as I am trying to edit the CHome_320x240.cpr file.
Next I tried to delete the cpr file from the windows directory - Error - You can't delete file from rom
Then I tried to rename the file in the windows directory, still won't work.
I am not sure on this, but I have read people are editing these files, I just don't understand why I can copy mine to my PC, edit it, but I can't get it back on the phone.
zseen said:
ActiveSync - but wait, i am on vista so really I am using WMDC
I can't use activesync on vista.
I tried using the file explorer on the phone.
I first try to copy the edited file over the no edited file.. Error - I am making sure that the home screen is not set to Sliding panel, as I am trying to edit the CHome_320x240.cpr file.
Next I tried to delete the cpr file from the windows directory - Error - You can't delete file from rom
Then I tried to rename the file in the windows directory, still won't work.
I am not sure on this, but I have read people are editing these files, I just don't understand why I can copy mine to my PC, edit it, but I can't get it back on the phone.
Click to expand...
Click to collapse
try to overwrite it with Resco Explorer (and not a File Explorer)
btw, you can't delete any files in ROM
Thank you Erofich
All works fine now. I'll pass the info on to anyone else that needs the help
zseen said:
Thank you Erofich
All works fine now. I'll pass the info on to anyone else that needs the help
Click to expand...
Click to collapse
Hi, Can you plz share info on how to delete or overwrite files in the windows dir for WM 6.1.
Thanks,
How did you manage to edit the registry? I changed one value (0000 1005 to 40) and now I can't edit anything else. Several programs I've used flat out won't let me change the registry. I keep getting "access denied" on all of them.

Registry key in .cpr file

Does anyone know how to refere to a registry in a .cpr file.
For example, if I want to add a text on my titanium plugin, and in my registry it's in located in HKLM\Software\whatever\text1, how can I get the .cpr to read the value inside that string?
For some reason wm6.5 knows that it can get values from the HKLM\Software\Microsoft\CHome key, but how can I get it from another key?
Would be realy awesome if someone could help, that way there would be quite a bit more to edit in wm6.5...
Does nobody have any idea?
I read that it is the same language as in .xml files, so how do I add a registry value to a text line?
don't know the format or the program which use cpr files
but if the cpr file include the "HKLM\Software\Microsoft\CHome"
then I would change it
if not then the program which interp the cpr files prob have
the parth hard-coded in it's binary code
Rudegar said:
don't know the format or the program which use cpr files
but if the cpr file include the "HKLM\Software\Microsoft\CHome"
then I would change it
if not then the program which interp the cpr files prob have
the parth hard-coded in it's binary code
Click to expand...
Click to collapse
I know the reg. path is in the binary code of a program,
but can't read or edit that.
But, my question is if someone knows the .xml code to read from a registery value.
fe: the code for a picture is [ source="\Windows\photo1.png" ]
to read something from a .dll file is [ InnerTextType="Resource" Text="shellresapps.dll,18149" ]

Categories

Resources