I have a C# application that runs with elevated permission. Is there a way to open the application with minimum functionalities when the user selects

  • Thread starter Thread starter Ranjini Rengan
  • Start date Start date
R

Ranjini Rengan

Guest
To run application with administrator rights, the values are set in application.Manifest file.

<requestedExecutionLevel level="requireAdministrator" uiAccess="false"/>

This helps in launching the application with full administrative access. It prompts for user consent.

When user selects NO, the application closes. Is there a way to open the application with minimum functionalities instead of closing the application.

Continue reading...
 
Back
Top