2
I am creating a project that accesses protected Windows folders. How do I request administrative user access.
2
I am creating a project that accesses protected Windows folders. How do I request administrative user access.
1
If the entire application needs to run with high privileges, you do not need to make changes to the code. Just add a manifesto that informs Windows that your application should be run with high privileges.
For that reason:
requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
Browser other questions tagged vb.net
You are not signed in. Login or sign up in order to post.