I am trying to gather some information on the following subject: I have developed an application that requires administrator rights. This is achieved with the following line in the manifest file:
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
Now what I would like to do is to provide a simple interface for people to use and create an extension for this application. This should be provided as an assembly an will be placed in the 'Plugins' directory. The appplication will load them in dynamicly.
Obviously, I would not want those assemblies to be loaded with administrator rights.
What are the recommended ways to do this?
Thanks!