AutoHotKey로 윈도우 블루투스 설정 열기

2024-01-07

윈도우 11에서 블루투스 설정을 빠르게 여는 AutoHotKey 스크립트입니다:

Persistent
#b::
{
    ; Open Quick Actions window
    Send("{LWin Down}a{LWin Up}")
    ; The quick action window takes a while to initialize and allow keyboard navigation
    ; Without the sleep timer you may end up on the wrong screen (or disabling WiFi)
    ; If your computer is slower, increase this value a bit more
    Sleep(600)

    ; WiFi -> Bluetooth
    Send("{Right}")

    ; Bluetooth chevron
    Send("{Tab}")

    ; Enter Bluetooth chevron
    Send("{Enter}")
}

이 스크립트를 사용하시려면 윈도우 11 빌드 22563 이상을 사용하셔야 합니다.