I have an application that uses click once to deploy, and I have managed to get the application starting when a user log's in.
My issues is that I need the application to start up hidden (I don't want a user to have to minimize it until they require it - I want it to sit in the system tray). Prior to using click once I simply checked the args to see if "/silent" was passed in. There appears to be no way to do this in a clickonce application (you can check if a uri query string is passed in, but because this is run from a .appref-ms shortcut there appears to be no way to get the /silent argument)
So my question is can someone either explain how I can get the /silent argument, or can someone suggest how I can tell if the application has started as a result of the user logging on (rather than the user starting the application from a shortcut).
It is important that whatever solution proposed doesn't require admin permissions but Language used isn't as important as I can probably port it to .net
Thanks for your help!