使用autohotkey打开energyoptions

时间:2016-03-08 08:23:28

标签: windows autohotkey keymapping

我目前正在尝试使用AutoHotkey,并希望创建一个打开Windows能量选项的脚本。但由于没有路径或任何我可以使用的东西,我根本无法弄清楚如何去做。有人知道解决方案或之前已经做过这个吗?

2 个答案:

答案 0 :(得分:1)

或者,为了更直接地到达那里,请尝试:

Run, powercfg.cpl

但是,根据您想要完成的任务,有一个命令行工具powercfg.exe可能具有您可以利用的功能:https://msdn.microsoft.com/en-us/library/ff794903

powercfg [-l] [-q] [-x] [-changename] [-duplicatescheme] [-d] [-deletesetting] [-setactive] [-getactivescheme] [-setacvalueindex] [-setdcvalueindex] [-h] [-a] [-devicequery] [-deviceenablewake] [-devicedisablewake] [-import] [-export] [-lastwake] [-?] [-aliases] [-setsecuritydescriptor] [-getsecuritydescriptor][-requests][-requestsoverride][-energy][-waketimers]

答案 1 :(得分:0)

你想模拟用键盘做什么 - 这就是AutoHotKey的全部想法。

以下代码使用Control-p打开能源选项:

^p::
    KeyWait Control ; wait for the control key to be released 
    Send {LWin} ; send windows key
    Send Power Options ; type in what you want to load
    Sleep 300 ; waits for start menu to filter - adjust this number
    Send {Enter} ; select power options
return