ホームページ >バックエンド開発 >Python チュートリアル >Windows で昇格された特権を使用して Python スクリプトを実行するにはどうすればよいですか?
アプリケーション開発の多くのタスク、特にシステム リソースとの対話時や管理操作の実行では、昇格された特権が必要です。この記事では、管理アクセスを必要とする Python でのスクリプト実行に関する特定の問題について説明します。
提供されたコード サンプルは、昇格されたアクセス許可でスクリプトを開始しようとします。ただし、スクリプトは許可プロンプトを超えて先に進むことはありません。この問題は、スクリプトの実行に関する一般的な誤解にあるようです。
提供されたコードは、管理者権限で再起動することで自己昇格できるという前提に基づいています。 。ただし、Windows の特権操作の性質により、このアプローチは実現できません。代わりに、外部メカニズムを利用して昇格をリクエストする必要があります。
非常に効果的な解決策の 1 つは、2010 年に Preston Landers によって作成された包括的なスクリプトです。このスクリプトを使用すると、ユーザーは現在のユーザーに管理者権限があるかどうかを簡単に確認でき、管理者権限がない場合でも確認できます。 、UAC 昇格をリクエストします。このスクリプトは、システムのアクションを示す視覚的なフィードバックを別のウィンドウに提供します。
スクリプトは、次のスニペットを使用してメイン アプリケーションに統合できます:
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())
あるいは、次のこともできます。次に、このスクリプトを PyPi から Python パッケージとしてインストールして使用します。次の手順に従ってください:
import pyuac def main(): print("Do stuff here that requires being run as an admin.") # The window will disappear as soon as the program exits! input("Press enter to close the window. >") if __name__ == "__main__": if not pyuac.isUserAdmin(): print("Re-launching as admin!") pyuac.runAsAdmin() else: main() # Already an admin here.
または、デコレータを使用します:
from pyuac import main_requires_admin @main_requires_admin def main(): print("Do stuff here that requires being run as an admin.") # The window will disappear as soon as the program exits! input("Press enter to close the window. >") if __name__ == "__main__": main()
以上がWindows で昇格された特権を使用して Python スクリプトを実行するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。