答案1
没有直接的命令可以执行此操作,但您可以使用像这样的脚本。
创建一个新的文本文件,并将以下代码粘贴到其中:
Option Explicit
Dim WshShell:Set WshShell=CreateObject("Wscript.Shell")
WshShell.run "rundll32.exe shell32.dll,Control_RunDLL wscui.cpl", 1
Wscript.Sleep 1000
WshShell.SendKeys("+{TAB}")
WshShell.SendKeys("+{TAB}")
WshShell.SendKeys("+{TAB}")
WshShell.SendKeys("+{TAB}")
WshShell.SendKeys("+{TAB}")
WshShell.SendKeys("+{TAB}")
WshShell.SendKeys("+{TAB}")
WshShell.SendKeys("+{TAB}")
Wscript.Sleep 10
WshShell.SendKeys("{ENTER}")
以此名称保存wscuisettings.vbs
。双击该文件。
答案2
只需创建地址的快捷方式并通过命令行执行快捷方式。
首先使用 wscui.cpl 打开它,然后单击要显示窗口的按钮。在地址栏中右键单击文本“更改操作中心设置”,然后单击“复制地址”。然后将快捷方式粘贴到桌面上。
一旦创建了快捷方式,您就可以使用 cmd 行使用它。
答案3
使用 AHK 更短
; Open Action Center
ControlGet, ShellTray, Hwnd,, TrayButton1, ahk_class Shell_TrayWnd
ControlClick,, ahk_id %ShellTray%
直接编程的方式是:
SendMessage, 0x111, ???,,, ahk_class Shell_TrayWnd
但我不知道要发送的命令号。