vote up 0 vote down star

Is it possible to find out whether your current .Net app has been launched using a shortcut or a Clickonce application reference (*.appref-ms) file? If so, how?

Some background: I am running into an issue using Microsoft Clickonce in which I cannot pass command line arguments to the application. It seems that this is the way the technology works by design. I was exploring different ways of passing this parameter; one of them was to have a set of different Clickonce Start Menu shortcuts.

flag

60% accept rate
What is application reference file ? – Alex Shnayder Jan 9 at 19:32
fixed to make more clear what I'm talking about. – siz Jan 9 at 19:37
Can you shed some light on the problem you're trying to solve with ClickOnce arguments? Perhaps we can give you ideas on another solution. – Austin Salonen Jan 9 at 21:25

2 Answers

vote up 1 vote down

Try testing out the ApplicationDeployment.IsNetworkDeployed property. I know this will be true if it is a ClickOnce app but I'm not sure if it will be false in your situation.

link|flag
It is true in all cases since I do want clickonce to launch the app. – siz Jan 9 at 21:17
Thought it might be... What are you trying solve with arguments to a ClickOnce app? – Austin Salonen Jan 9 at 21:25
vote up 0 vote down

I'm not sure what an "application reference file" is; do you mean like double-clicking the EXE file in Explorer or running the file from a command line?

There isn't any a priori way to detect how your program was started. The usual workaround is to configure the shortcut file to pass a parameter on the command line. Then, check for the existence of that parameter at run time. If you find it there, assume the program was started from a shortcut. The key to this approach is the fact that you can't include a parameter when double-clicking the EXE file in Explorer, so if you find a command-line parameter, you know the program wasn't started that way.

link|flag
While that sounds like a reasonable workaround, it doesn't account for the multiple ways you can shortcut to an app. Start menu, desktop shortcut, quicklaunch, recently used lists, and of course, opening the application by double clicking a document to "open with". – Soviut Jan 9 at 19:37
That's easy. Configure a different command-line parameter for each shortcut or file association. – Rob Kennedy Jan 10 at 8:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.