Yathosho
25th May 2003 15:36 UTC
WriteRegStr Problem/Question
i'm using this line
WriteRegStr HKCR "htmlfile\shell\open\command" "(Default)" '"$R0" -nohome'
which creates an additional sub_key (Default). when i delete the old one, the new one does not work. is there a possibility to overwrite the old sub_key?
kichik
25th May 2003 15:39 UTC
Use:
WriteRegStr HKCR "htmlfile\shell\open\command" "" '"$R0" -nohome'
An empty string means default in this case.
Yathosho
26th May 2003 16:10 UTC
would my version have worked in an older build of nsis? i thought this command worked before.
kichik
26th May 2003 16:16 UTC
Nope, never. Not even in NSIS 1.0f :)