Archive: NSIS for Pocket PC - Not letting user select path?


NSIS for Pocket PC - Not letting user select path?
  Hi,

Situation:
I have been getting emails from users comaplaining where they had selected to install SQLCE into their external memory card. Thus, this caused the software error of not finding SQLCE in their Pocket PC.

Hope to resolve:
Not having this popup to let user select where to install as shown below.
http://img86.imageshack.us/img86/840...opupppcbe2.gif
http://img86.imageshack.us/img86/926...opupppcwh2.gif

I would like the NSIS installer to force install into the Pocket PC device.

My current script:


Section "SQLCE"

>SectionIn 1
SetOutPath "$INSTDIR"

>File sqlce30.ppc.wce4.armv4.ini
File sqlce30
.ppc.wce4.armv4.CAB

StrCpy$0 "$INSTDIR\\sqlce30.ppc.wce4.armv4.ini"
>Call InstallCAB

SectionEnd
>
Thanks!

Most installers allow silent installations where all the information required is passed through the command line or an external "answer file". I guess the installer in this case will take its information from the INI file. I tried a quick Google search, but found nothing.

You can either try searching more, or try using AutoIt to automate the clicks.