我希望仅当当前用户是管理员时才能访问应用程序中的某些功能。

如何在Windows上使用Python确定当前用户是否在本地Administrators组中?

最佳答案

您可以尝试this:

import ctypes
print ctypes.windll.shell32.IsUserAnAdmin()

09-06 04:50