About Store Forum Documentation Contact



Post Reply 
Manifest & UAC ?
Author Message
RedcrowProd Offline
Member

Post: #1
Manifest & UAC ?
Hey,

i was wondering if there's any easy way to do this in the EE IDE ?

I'm trying to get my install to run on Admin right, and ask for it to the user ( requireAdministrator )

i have never done this before and don't really know where to start.

if someone can help, it would be appreciated smile

Thanks as always smile
09-19-2016 11:56 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: Manifest & UAC ?
Code:
InitPre()
{
   if(!App.elevated()){OSLaunch(App.exe(), S, false, true); App.flag=APP_EXIT_IMMEDIATELY; return;}
You can try something like this
09-20-2016 12:10 AM
Find all posts by this user Quote this message in a reply
RedcrowProd Offline
Member

Post: #3
RE: Manifest & UAC ?
awesome like usual smile i'll try this when i get home !

thanks i think it did work smile will have to test more in detail
(This post was last modified: 09-20-2016 04:16 AM by RedcrowProd.)
09-20-2016 12:21 AM
Find all posts by this user Quote this message in a reply
Post Reply