在 Windows 中以管理员身份运行 Python 脚本

在 Windows 中以管理员身份运行 Python 脚本

我有这个小的 Python 函数:

  def change_boot(self):

        subprocess.call(['runas', '/user:Administrator','bcdedit'], shell=True) 

但是它一直要求输入管理员密码...我怎样才能将其作为参数传递,或者完全绕过它?

Enter the password for Administrator:
None 

相关内容