LOST
LOST

Reputation: 3284

How can I get a set of permissions requested by an assembly?

I want to ask user to grant requested permissions or prevent assembly from loading.

Upvotes: 0

Views: 58

Answers (1)

PhilMY
PhilMY

Reputation: 2651

You can use the Standard User Analyzer tool to look for UAC issues:

http://technet.microsoft.com/en-us/library/cc766021(WS.10).aspx

If your application requires elevation, you can embed an application manifest specifying requestedExecutionLevel to prompt the user for permission:

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

Upvotes: 0

Related Questions