Archive: little Dword trouble !


little Dword trouble !
hello guys !

just little problem AFTER help reading :
i search to put WriteRegDword..but don't match .
in a .reg file here is the linees :

[HKEY_CURRENT_USER\Software\Mypersonnalsoft\Config]
ExternalResourceFileVer"=dword:00001194

no trouble for HCU entry but the dword don't match ..can you help me for the syntax to use !


WriteRegDWORD HKCU Software\Mypersonnalsoft\Config ? ?
WriteRegDWORD HKCU Software\Mypersonnalsoft\Config 00001194 ? ..don't match

Thank you beforehand


WriteRegDWORDHKCUSoftwareMypersonnalsoftConfigExternalResourceFileVer00001194


hi
thanks for your kick answer

with no "/" ??
WriteRegDWORD HKCU Software/Mypersonnalsoft/Config ExternalResourceFileVer 00001194

is better no ?

or really without dash WriteRegDWORD HKCU SoftwareMypersonnalsoftConfig ?


final answer is
WriteRegDWORD HKCU "Software/Mypersonnalsoft/Config" "ExternalResourceFileVer" "1194 "

(without 000)

:D


Second final answer :

WriteRegDWORD HKCU "Software/Mypersonnalsoft/Config" "ExternalResourceFileVer" "4500"

In fact, it depends on the 1194 number ..is it using base 10 or 16 ????

(WinampFr told me that second answer was the correct one..., so here it is ;) !:D


Seems like the back-slashes just disappeared, that's weird...
It should be with back-slashes, and if you want it in hex you can always put 0x before the number.