I want to ask user to grant requested permissions or prevent assembly from loading.
Asked
Active
Viewed 54 times
0
-
You probably want to tag your question with ".net" to get a faster answer. – J.N. Mar 30 '11 at 13:17
1 Answers
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:

PhilMY
- 2,621
- 21
- 29
-
1This 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