Autohotkey介紹

本文介绍如何使用AutoHotkey (AHK) 脚本语言实现自动化的系统设置调整,包括打开命令提示符及系统设置窗口,并通过模拟按键进行配置。AHK是一种免费且开源的热键脚本语言,可用于模拟鼠标键盘操作。
摘要由CSDN通过智能技术生成

SetTitleMatchMode 2
run,cmd
WinWait, ahk_class ahk_class ConsoleWindowClass,
IfWinNotActive, ahk_class ConsoleWindowClass, , WinActivate, ahk_class ConsoleWindowClass,
WinWaitActive, ahk_class ConsoleWindowClass,

ControlSend, , Control sysdm.cpl`,`,3 {Enter}, cmd.exe 

WinWait,  ahk_class #32770,
IfWinNotActive,  ahk_class #32770, , WinActivate,  ahk_class #32770,
WinWaitActive, ahk_class #32770,
send {TAB} 
send {TAB}
send {Enter} 
send {TAB}
send {TAB}
send {TAB}
send {TAB}
send {TAB}
send {SPACE}
send {TAB}
send {TAB}
send {TAB}
send {TAB}
send {Enter} 


Autohotkey介紹

AHK 就是AutoHotKey,是一款免费的、Windows平台下开放源代码的热键脚本语言。
可以模擬鼠標、鍵盤等實現自動運行。
自动图形界面脚本生成工具(SmartGUI Creator 4.0)

AHK

AHK基本操作

基本操作

使用notepad文本编辑器,新建一个文件,使用.ahk作为后缀名,例如test.ahk 。

代码:

MsgBox,hello,world
run,https://www.baidu.com

效果:出現hello,world提示框,點擊OK

    自動打開www.baidu.com

明:

  (1).保存退出,双击执行

  (2).可以Compile Script成.exe文件,移植其他幾台運行。

  (3).還可以實現自動登錄

鍵實例介紹

l 作業要求 :

自動打開或關閉Automatically restart

l 實現過程 :
Ø 1 . 運行 CMD 打開系統設置
Ø 2 . autohotkey 模擬按鍵
l 說明:
Ø 管理員模式運行,否則不能

模擬按鍵所以.ahk文件不能直接運

行。解決辦法:編譯成.exe可執行文

件再以管理員模式運行。

code:

SetTitleMatchMode 2
run,cmd
WinWait, ahk_class ahk_class ConsoleWindowClass,
IfWinNotActive, ahk_class ConsoleWindowClass, , WinActivate, ahk_class ConsoleWindowClass,
WinWaitActive, ahk_class ConsoleWindowClass,

ControlSend, , Control sysdm.cpl`,`,3 {Enter}, cmd.exe 

WinWait,  ahk_class #32770,
IfWinNotActive,  ahk_class #32770, , WinActivate,  ahk_class #32770,
WinWaitActive, ahk_class #32770,
send {TAB} 
send {TAB}
send {Enter} 
send {TAB}
send {TAB}
send {TAB}
send {TAB}
send {TAB}
send {SPACE}
send {TAB}
send {TAB}
send {TAB}
send {TAB}
send {Enter} 





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值