ClickOnce .appref-ms more than a link to .application file? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T09:49:21Z http://stackoverflow.com/feeds/question/281173 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/281173/clickonce-appref-ms-more-than-a-link-to-application-file 0 ClickOnce .appref-ms more than a link to .application file? Solracnapod 2008-11-11T15:20:44Z 2009-10-18T04:48:23Z <p>I have a ClickOnce environment like this: </p> <p>\Fileserver\ClickOnceApps\App1.application </p> <p>C:\Documents and Settings\user\Start Menu\Programs\publisher\app1.appref-ms </p> <p>My understanding is the .apppref-ms file is a glorified link to the app.application file. Does it do anything else? </p> http://stackoverflow.com/questions/281173/clickonce-appref-ms-more-than-a-link-to-application-file/281232#281232 1 Answer by Nir for ClickOnce .appref-ms more than a link to .application file? Nir 2008-11-11T15:35:09Z 2009-10-18T04:48:23Z <p>If you open the appref-ms file in a text editor you'll see it contains the Url for the application, culture, processor architecture and key used to sign the application, so yes, it's just a link.</p> <p>The difference between those "Application Reference" files and shortcuts (.lnk) is that the application reference points to the original application Url and not the location of the exe on disk, when you run the appref-ms file the system knows how to find the copy of the program on the local disk and run it from there without accessing the Url (this is not accurate and depends on settings in the ClickOnce manifest, but its a close approximation).</p>