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.


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!