Reputation: 6649
Im looking for the following information to decide whether to install my application in the Local or Roaming folder:
Using the Visual Studio setup project, say I install my application into the Roaming folder (like Dropbox, for instance)
Upvotes: 0
Views: 3776
Reputation: 21416
You included some links in your post, but you didn't really read them. Perhaps this article will be more clear: http://msdn.microsoft.com/en-us/library/windows/apps/hh464917(v=vs.85).aspx
Basically, Local folder should contain files which will be used only on the current machine. In the Roaming folder you can install files which support user profile roaming (accessing the user profile from another machine).
So it all depends on what type of application you are installing:
Regarding Add or Remove programs, your application entry should be available for roaming profiles if its installed per-user.
Upvotes: 1