如何在python上获得控制面板显示设置?

时间:2015-06-05 09:36:53

标签: python windows

enter image description here

我想在python上获取显示设置值,如:

100%或125%或150%

如何在python上获得此设置值?

1 个答案:

答案 0 :(得分:0)

您要访问的设置窗口通常是C:\Windows\System32\DpiScaling.exe可执行文件。

现在您可以使用python访问此可执行文件。可能有许多不同的方法可以做到这一点。在我的示例中,我使用的是subprocess模块。

<强>代码:

import subprocess

def openSettings():
    subprocess.Popen([r"C:\Windows\System32\DpiScaling.exe"])

openSettings()