views:

242

answers:

0

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.