How does one pass command line argument to a Click

2019-01-17 10:51发布

I have a Clickonce application that is launched from the start menu (local). I would like to be able to specify a parameter so that the application can load certain data. The application lives on a fileshare and will be launched using the URL only once (like described here on MSDN). This implies that the method describe in this link will not work; users will be launching the application using an .appref-ms shortcut in the Start Menu.

I haven't been able to find a solution. Is it possible to somehow pass a parameter into the click once application? If so, how? If not, what are some alternatives?

4条回答
Anthone
2楼-- · 2019-01-17 11:30

All of the answers here only apply to Online ClickOnce applications. This MSDN Forum post and this blog post discuss some ways to do it for Offline ClickOnce applications.

查看更多
Anthone
3楼-- · 2019-01-17 11:34

Perhaps you could pass a parameter on the URL the first time, and have the app take notice of that, and write the parameters to a config file, or environment variables or somesuch.

On subsequent runs, load from the config file

查看更多
Viruses.
4楼-- · 2019-01-17 11:42

You pass the parameters as a query string and use HttpUtility.ParseQueryString, as discussed in this MSDN article.

查看更多
我只想做你的唯一
5楼-- · 2019-01-17 11:49

Since you get to the deployment manifest via a Url, you can pass all of that information via the query string (e.g. http://clickonce.example.com/shell.application?p1=this&p2=that)

I was going to type out the steps, then googled and found this blog that basically lists out all the steps. I've done something similar in one instance with no issues. The only slightly difficult thing is that you have to re-mage after setting things up, but if you got it to deploy in the first place, you already know how to set things up.

Good luck!

查看更多
登录 后发表回答