如何在Windows上使用提升的特权运行python脚本

我正在写一个pyqt应用程序,需要执行pipe理任务。 我宁愿用提升权限启动我的脚本。 我知道这个问题在SO或其他论坛上被多次提出。 但是,人们build议的解决scheme是看看这个SO问题在Python脚本中请求UAC提升?

但是,我无法执行链接中给出的示例代码。 我已经把这个代码放在主文件的顶部,并试图执行它。

import os import sys import win32com.shell.shell as shell ASADMIN = 'asadmin' if sys.argv[-1] != ASADMIN: script = os.path.abspath(sys.argv[0]) params = ' '.join([script] + sys.argv[1:] + [ASADMIN]) shell.ShellExecuteEx(lpVerb='runas', lpFile=sys.executable, lpParameters=params) sys.exit(0) print "I am root now." 

它实际上要求允许提升,但是打印行不会被执行。 有人可以帮助我成功运行上述代码。 提前致谢。

谢谢大家的回复。 我的脚本使用了Preston Landers在2010年编写的模块/脚本。浏览互联网两天后,我可以find脚本,因为它深深隐藏在pywin32邮件列表中。 有了这个脚本,检查用户是否是pipe理员,如果没有,那么就更容易检查UAC /pipe理员权限。 它确实在单独的窗口中提供输出以查明代码在做什么。 关于如何使用代码也包含在脚本中的示例。 为了所有人在Windows上寻找UAC的好处,请看这个代码。 我希望它可以帮助寻找同样解决scheme的人。 从主脚本中可以使用这样的东西:

 import admin if not admin.isUserAdmin(): admin.runAsAdmin() 

实际的代码是: –

 #!/usr/bin/env python # -*- coding: utf-8; mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vim: fileencoding=utf-8 tabstop=4 expandtab shiftwidth=4 # (C) COPYRIGHT © Preston Landers 2010 # Released under the same license as Python 2.6.5 import sys, os, traceback, types def isUserAdmin(): if os.name == 'nt': import ctypes # WARNING: requires Windows XP SP2 or higher! try: return ctypes.windll.shell32.IsUserAnAdmin() except: traceback.print_exc() print "Admin check failed, assuming not an admin." return False elif os.name == 'posix': # Check for root on Posix return os.getuid() == 0 else: raise RuntimeError, "Unsupported operating system for this module: %s" % (os.name,) def runAsAdmin(cmdLine=None, wait=True): if os.name != 'nt': raise RuntimeError, "This function is only implemented on Windows." import win32api, win32con, win32event, win32process from win32com.shell.shell import ShellExecuteEx from win32com.shell import shellcon python_exe = sys.executable if cmdLine is None: cmdLine = [python_exe] + sys.argv elif type(cmdLine) not in (types.TupleType,types.ListType): raise ValueError, "cmdLine is not a sequence." cmd = '"%s"' % (cmdLine[0],) # XXX TODO: isn't there a function or something we can call to massage command line params? params = " ".join(['"%s"' % (x,) for x in cmdLine[1:]]) cmdDir = '' showCmd = win32con.SW_SHOWNORMAL #showCmd = win32con.SW_HIDE lpVerb = 'runas' # causes UAC elevation prompt. # print "Running", cmd, params # ShellExecute() doesn't seem to allow us to fetch the PID or handle # of the process, so we can't get anything useful from it. Therefore # the more complex ShellExecuteEx() must be used. # procHandle = win32api.ShellExecute(0, lpVerb, cmd, params, cmdDir, showCmd) procInfo = ShellExecuteEx(nShow=showCmd, fMask=shellcon.SEE_MASK_NOCLOSEPROCESS, lpVerb=lpVerb, lpFile=cmd, lpParameters=params) if wait: procHandle = procInfo['hProcess'] obj = win32event.WaitForSingleObject(procHandle, win32event.INFINITE) rc = win32process.GetExitCodeProcess(procHandle) #print "Process handle %s returned code %s" % (procHandle, rc) else: rc = None return rc def test(): rc = 0 if not isUserAdmin(): print "You're not an admin.", os.getpid(), "params: ", sys.argv #rc = runAsAdmin(["c:\\Windows\\notepad.exe"]) rc = runAsAdmin() else: print "You are an admin!", os.getpid(), "params: ", sys.argv rc = 0 x = raw_input('Press Enter to exit.') return rc if __name__ == "__main__": sys.exit(test()) 

在评论中你从别人的代码说, ShellExecuteEx不会将其STDOUT发回到原始shell 。 所以你不会看到“我现在是根”,即使代码可能正常工作。

不要打印某些东西,请尝试写入文件:

 import os import sys import win32com.shell.shell as shell ASADMIN = 'asadmin' if sys.argv[-1] != ASADMIN: script = os.path.abspath(sys.argv[0]) params = ' '.join([script] + sys.argv[1:] + [ASADMIN]) shell.ShellExecuteEx(lpVerb='runas', lpFile=sys.executable, lpParameters=params) sys.exit(0) with open("somefilename.txt", "w") as out: print >> out, "i am root" 

然后查看文件。

这是一个stdoutredirect的解决scheme:

 def elevate(): import ctypes, win32com.shell.shell, win32event, win32process outpath = r'%s\%s.out' % (os.environ["TEMP"], os.path.basename(__file__)) if ctypes.windll.shell32.IsUserAnAdmin(): if os.path.isfile(outpath): sys.stderr = sys.stdout = open(outpath, 'w', 0) return with open(outpath, 'w+', 0) as outfile: hProc = win32com.shell.shell.ShellExecuteEx(lpFile=sys.executable, \ lpVerb='runas', lpParameters=' '.join(sys.argv), fMask=64, nShow=0)['hProcess'] while True: hr = win32event.WaitForSingleObject(hProc, 40) while True: line = outfile.readline() if not line: break sys.stdout.write(line) if hr != 0x102: break os.remove(outpath) sys.stderr = '' sys.exit(win32process.GetExitCodeProcess(hProc)) if __name__ == '__main__': elevate() main() 

这是一个只需要ctypes模块的解决scheme。 支持pyinstaller包装程序。

 #!python # coding: utf-8 import sys import ctypes def run_as_admin(argv=None, debug=False): shell32 = ctypes.windll.shell32 if argv is None and shell32.IsUserAnAdmin(): return True if argv is None: argv = sys.argv if hasattr(sys, '_MEIPASS'): # Support pyinstaller wrapped program. arguments = map(unicode, argv[1:]) else: arguments = map(unicode, argv) argument_line = u' '.join(arguments) executable = unicode(sys.executable) if debug: print 'Command line: ', executable, argument_line ret = shell32.ShellExecuteW(None, u"runas", executable, argument_line, None, 1) if int(ret) <= 32: return False return None if __name__ == '__main__': ret = run_as_admin() if ret is True: print 'I have admin privilege.' raw_input('Press ENTER to exit.') elif ret is None: print 'I am elevating to admin privilege.' raw_input('Press ENTER to exit.') else: print 'Error(ret=%d): cannot elevate privilege.' % (ret, ) 

我发现这个问题很简单。

  1. python.exe创build一个快捷方式
  2. 将快捷方式目标更改为像C:\xxx\...\python.exe your_script.py
  3. 点击快捷方式属性面板中的“advance …”,点击“以pipe理员身份运行”

我不确定这些选项的咒语是否正确,因为我使用的是中文版的Windows。

我可以确认,delphifirst的解决scheme是最简单,最简单的解决scheme,以提升权限运行python脚本。

我创build了python可执行文件(python.exe)的快捷方式,然后通过在调用python.exe之后添加我的脚本名称来修改快捷方式。 接下来,我在快捷方式的“兼容性选项卡”上选中“以pipe理员身份运行”。 在执行快捷方式时,会以pipe理员身份提示请求运行脚本的权限。

我特别的Python应用程序是一个安装程序。 该程序允许安装和卸载另一个python应用程序。 在我的情况下,我创build了两个快捷方式,一个名为“appname install”,另一个名为“appname uninstall”。 这两个快捷方式之间的唯一区别是Python脚本名称后面的参数。 在安装程序版本中,参数是“install”。 在卸载版本的参数是“卸载”。 安装程序脚本中的代码将评估提供的参数,并根据需要调用相应的函数(安装或卸载)。

我希望我的解释能够帮助其他人更快速地找出如何以提升的权限运行python脚本。

另外如果你的工作目录不同于你可以使用lpDirectory

  procInfo = ShellExecuteEx(nShow=showCmd, lpVerb=lpVerb, lpFile=cmd, lpDirectory= unicode(direc), lpParameters=params) 

如果改变path不是一个理想的select删除unicode python 3.X会来得心应手

Interesting Posts