smart device cab project with visual studio: inserting of registry value

Posted by nuttynibbles on Stack Overflow See other posts from Stack Overflow or by nuttynibbles
Published on 2010-03-23T20:38:34Z Indexed on 2010/03/23 20:43 UTC
Read the original article Hit count: 249

Filed under:
|

hi,

i have created a cab file using visual studio smart device cab project. i've managed to generate a cab file and install onto a mobile phone successfully.

for my installation, it will also insert into registry. however, for this it is not working. the registry value is suppose to be like this including the double quote: "\Program Files\app\file.exe" "%1"

i read that to include '%', i have to insert extra % which will be like this: "\Program Files\app\file.exe" "%%1"

but this is still not getting insert into the registry. however, if i remove the double quotes which looks like this, it works: \Program Files\app\file.exe %%1

Thanks.

© Stack Overflow or respective owner

Related posts about cab

Related posts about visual-studio