I have a windows forms app that is modifying some registry keys under the software section. Vista non admins are complaining that they are getting a permission error. I did what it said in this post:
http://stackoverflow.com/questions/562350/requested-registry-access-is-not-allowed
Created an app.manifest file and pasted what was said in there. Do I need to align these values to my app:
<assemblyIdentity version="1.0.0.0" name="MyApplication.app" />
Also, when I compile in release mode, I am only seeing a *.vshost.manifest, but not a *.manifest file. I tried renaming the vshost one but it still won't work if I'm not an admin.
I guess what I'm asking here is how do I deploy this manifest file? I searched google for it but can't find any good info.