Reputation: 1
I've finished my app and used the visual studio installer to create a package with all the files that aplication need.
But the problem is that, if the user install the program in ProgramFiles directory, it won't start because he needs admin Rigths (This because the program needs sqlServerCe).
How i can avoid this situation?
Another question, if the program has the sqlServer and sqlServerCe in prerequesites it needs the sqlServerCe.dll?
Thanks.
Upvotes: 0
Views: 110
Reputation: 101
If I'm not mistaken, I believe it is because you need an application manifest. You can specify privilege information this way.
http://msdn.microsoft.com/en-us/library/bb756929.aspx
Upvotes: 1