0

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

ohmantics
  • 1,799
  • 14
  • 16
LOST
  • 2,956
  • 3
  • 25
  • 40

1 Answers1

0

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

PhilMY
  • 2,621
  • 21
  • 29
  • 1
    This question is not related to UAC. This is about [PermissionSet](http://msdn.microsoft.com/en-us/library/system.security.permissionset.aspx) – LOST Apr 01 '11 at 10:40