How to add administrator privileges to AutoHotkey script?

前端 未结 2 1594
小鲜肉
小鲜肉 2020-12-06 03:21

I compiled it to an executable, but to open it I have to right-click and press \"Run as administrator\". I want it to request admin privileges each time I run it, but how to

2条回答
  •  Happy的楠姐
    2020-12-06 03:51

    Try adding this to the auto-execute section (top of the script):

    ; If the script is not elevated, relaunch as administrator and kill current instance:
    
    full_command_line := DllCall("GetCommandLine", "str")
    
    if not (A_IsAdmin or RegExMatch(full_command_line, " /restart(?!\S)"))
    {
        try ; leads to having the script re-launching itself as administrator
        {
            if A_IsCompiled
                Run *RunAs "%A_ScriptFullPath%" /restart
            else
                Run *RunAs "%A_AhkPath%" /restart "%A_ScriptFullPath%"
        }
        ExitApp
    }
    

    and recompile the script.

    For more details read https://autohotkey.com/docs/commands/Run.htm#RunAs.

提交回复
热议问题