我有这个小的 Python 函数:
def change_boot(self):
subprocess.call(['runas', '/user:Administrator','bcdedit'], shell=True)
但是它一直要求输入管理员密码...我怎样才能将其作为参数传递,或者完全绕过它?
Enter the password for Administrator:
None
我有这个小的 Python 函数:
def change_boot(self):
subprocess.call(['runas', '/user:Administrator','bcdedit'], shell=True)
但是它一直要求输入管理员密码...我怎样才能将其作为参数传递,或者完全绕过它?
Enter the password for Administrator:
None