WindowsError:[错误740]即使在禁用UAC后,请求的操作也需要提升

时间:2013-02-23 09:41:53

标签: python windows-8 uac elevation

我已禁用UAC并在python中运行我的脚本。

command = "abcd.exe"
subprocess.Popen(command,stdout=subprocess.PIPE,stderr=subprocess.PIPE).communicate()

另外,我将应用程序abcd.exe从其属性设置为以管理员身份运行。

然后我收到以下错误:

  

WindowsError:[错误740]请求的操作需要提升

2 个答案:

答案 0 :(得分:6)

您可以尝试使用:

subprocess.call(["abcd.exe"], shell=True)

基本上,这里的重要部分是shell=True;如果设置为 False ,则会出现以下错误。

  

WindowsError:[错误740]

答案 1 :(得分:0)

我认为问题在于使用subprocess.Popen。

我也认为您的问题已在此处得到解答: Request UAC elevation from within a Python script?