I would like to periodically check for updates for my ClickOnce application even if it is not currently running. I found a post about using ClickOnce to deploy a background service, which would allow me to run a service that checks for updates, but the setup is kind of tricky so I'm wondering if there is an easier or more straightforward method. Maybe just add something to the startup folder in my ClickOnce deployed app rather than using a service?
Edit:
The reason I'm thinking about this approach is that I basically want to create a ClickOnce wrapper for a set of very simple commonly used apps. What this means is that each app's executable file will not be ClickOnce integrated (since I do not control the source code), so I can't rely on the standard methods of triggering an update.
The real answer might be to use some sort of app virtualization software like Xen or Citrix provides, but I'm ok with something free and kinda buggy. Unfortunately Xen/Citrix are targeted at large IT enterprises rather than individual users that are sick of reinstalling the same sets of apps on a bazillion machines.