使用Python打开"显示设置"或"运行"对话框



如何使用Python打开RunDialogBoxDisplay settings

我找到了一种使用Run Dialog box(Win+R(打开Display settings的方法,只需键入ms-settings:display即可。

使用cmd可以键入explorer.exe shell:::{2559a1f3-21d7-11d4-bdaf-00c04f60b9f0},也可以使用Powershell(New-Object -ComObject "Shell.Application").FileRun()

一个简单的选项是从Python运行cmd命令:

import subprocess
subprocess.run(['explorer.exe', 'shell:::{2559a1f3-21d7-11d4-bdaf-00c04f60b9f0}'])

至于显示设置,也可以通过类似的方式实现:

import subprocess
subprocess.run(['control.exe', 'desk.cpl'])

ms-settings:是一个URI方案,与Launch the Windows Settings app一样。

因此,您只需使用webbrowser模块(它是Python标准库的一部分(即可打开"显示设置"窗口。

import webbrowser
webbrowser.open("ms-settings:display")

相关内容

  • 没有找到相关文章

最新更新