ClickOnce: How do I pass a querystring value to my app *through the installer*?

人盡茶涼 提交于 2020-01-06 03:29:25

问题


My company currently builds separate MSI's for all of our clients, even though the app is 100% the same across the board (with a single exception, an ID in the app.config).

I would like to show them that we can publish in once place with ClickOnce, and simply add a query string parameter for each client's installer.

Example: http://mysite.com/setup.exe?ID=1234-56-7890

The issue that I'm having is that the above ("ID=1234...") is not being passed along to the "myapplication.application". What is happening instead is, the app is being installed successfully, and it is running the first time with an activation context, but the "ActivationUri" does not contain any query string values.

Is there a way to pass query string values FROM THE INSTALLER URL to the application's launch URL? If so, how?


回答1:


After much searching (and discussing), the answer is simply that the current version of ClickOnce doesn't work that way. The installer does not pass the URL onto the application up it's first run.

Here is what I have done for a workaround (and it works great).

  • Change my setup package to have all of the required files uncompressed and loose (as apposed to using a CAB file, or embedding them in the installer).

  • Make an ASP.NET application (using Routing for URL handling) that listens for a request to "mysite.com/Installer/00123/Setup.exe"

    • Note: the route should listen for "/Installer/{ID}/*" where {ID} is 5 digits.
    • There is actually no directory called "00123", but rather, I'm using ASP.NET Routing to pickup those requests and then I map it to my actual directory that has the installer file in it.
  • I then hijack the request (parse the setup.exe to find the embedded URL that tells the installer program where to find the rest of the files... I then replace "/00000/" with the request URL that the user went to - in this case "00123".

    • As each file is being requested, I know which "version" of the file to send, because the ClickOnce Installer will be looking for "mysite.com/Installer/00123/SomeFile.dll" (or whatever).

Instead of using a 5-digit ID, you could use a GUID... it's up to you.

This solution works great for our organization... we currently have 37 clients who require unique customizations to their installer package, but we only have to actually build and publish ONE installer package and simply use the hijack method above.

At this point we have placeholders that we swap out so that it's easy to customize installers for as many clients as we want.

Example: in the app.config file we have displayName="{OrgName}" which is automatically replaced by one of the values in the database.




回答2:


For me, "http://mysite.com/myapplication.application?id=1234-56-7890" seems to do the trick.



来源:https://stackoverflow.com/questions/1389995/clickonce-how-do-i-pass-a-querystring-value-to-my-app-through-the-installer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!