RedcrowProd
Member
|
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
Thanks as always
|
|
09-19-2016 11:56 PM |
|
Esenthel
Administrator
|
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 |
|
RedcrowProd
Member
|
RE: Manifest & UAC ?
awesome like usual i'll try this when i get home !
thanks i think it did work 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 |
|