I have my WinCE application bundled in a CAB file. At the time of CAB extraction I want to add some value in a config file of the app. The value has to be provided by the person who is installing the app (extracting the app).
I thought to extract the cab file by running a script that uses WceLoad.exe. But this tool does not pass any parameter to the CAB file. Moreover I am not sure how would the CAB accept parameter when it is extracting(installing). I thought to use Setup project that can be used to customize the installation but none of its methods i.e. Install_Init and Install_Exit accept any parameter.
Is this scenario possible to handle through CAB file deployment? Or is there other way to deploy so that values could be passed at the time of deployment?