I am opening a file using the installer script nsis and i need to open it as an admin in order for it to run properly, but i cannot seem to figure out how to do this.
currently my open code looks like this:
FileOpen $4 "$R0" w
FileRead $4 $1
FileClose $4
it opens it but as a regular user and i need it to be as an admin. is there a way to do this?? thanks in advance for your help!