Alves
Alves

Reputation: 1

C# deploy, problems with folders

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

Answers (2)

Alves
Alves

Reputation: 1

Problem solved.

I needes to ask for admin rigths in my application

Upvotes: 0

foobar1234
foobar1234

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

Related Questions