1

our applicaton is installing with windows installer. The things working fine but the application itself is full trusted and not allowing to run on the employee's computer with less level (not full trusted). My question is that, is there any way to make the user full trusted for this application during the installation? Can we make our windowos installer msi in this position to make the user as full trusted for this application?

Best Regards Adnan

Austin Salonen
  • 49,173
  • 15
  • 109
  • 139
Adnan
  • 11
  • 1

1 Answers1

0

You'll need to add the correct manifest to your application, in this case it seems you will need requireAdministrator

See http://msdn.microsoft.com/en-us/library/bb756929.aspx

saschabeaumont
  • 22,080
  • 4
  • 63
  • 85
  • yes i mean administrator level permission because the employees are getting security exceptions. The installation is running successfully but starting the application causing problem without full trust level. – Adnan Oct 26 '09 at 16:15