UAC를 비활성화하고 Python으로 스크립트를 실행했습니다.WindowsError : [오류 740] 요청한 작업에 UAC를 비활성화 한 후에도 높이가 필요합니다.
command = "abcd.exe"
subprocess.Popen(command,stdout=subprocess.PIPE,stderr=subprocess.PIPE).communicate()
또한 해당 속성의 abcd.exe
응용 프로그램을 관리자로 실행하도록 설정했습니다. 나는 문제가 subprocess.Popen을 사용하여이라고 생각
WindowsError: [Error 740] The requested operation requires elevation
[파이썬 스크립트 내에서 요청 UAC 권한 상승?]의 사용 가능한 복제 (http://stackoverflow.com/questions/130763/request-uac-elevation-from-within-a-python-script) –