MyClickOnce application accepts a query string parameter. This is fine when users click on the Launch link on the publish.htm to run the application file.
The problem arises when users click on the Install link on the publish.htm to run thesetup.exeand install prerequisites. After checking for/installingprerequisites, it callsmy application filedirectly with no query string parameters.
The -url command line parameter forsetup.exe onlyspecifies the url leading up to the name of my application file. It will notread what comes after the file name, which is where the query string parameters go.
I have also tried the
Bootstrapper Manifest Generatortool. It onlyincludes a query string parameter as part of the setup.exe.And my application file still does not read the query string parameter.
What I would like to do is after installing prerequisites, my application file can read its query string parameter.
Can someone help me?