คุณสามารถปิดการใช้งานปุ่มลัดใด ๆ โดยใช้ AutoHotkey remapping script แทนที่จะกำหนดคำสั่งให้กับปุ่มลัด AutoHotkey คุณเพียงบอกให้ทำอะไรไม่ได้เลย
คุณวางรหัสด้านล่างในตัวแก้ไขเช่น Notepad และบันทึกไฟล์ด้วย. ahk ลงท้าย ตั้งชื่อบางอย่างเช่น "ปิดใช้งานคีย์ลัด. ahk"
หากคุณแปลงไฟล์เป็น exe คุณจะไม่จำเป็นต้องติดตั้ง AutoHotkey หรือเรียกใช้เป็นแอพพกพา สคริปต์ของคุณนั้นเป็นแอปเดี่ยวที่คุณสามารถแจกจ่ายได้
ไม่มีใครจะรู้ว่าเกิดอะไรขึ้น หากต้องการฆ่าสคริปต์ ahk คุณจะต้องฆ่ากระบวนการ AutoHotkey.exe ด้วยตนเองใน Process Manager หากคุณมีไฟล์ exe ชื่อของกระบวนการจะสอดคล้องกับชื่อของไฟล์ exe
ในการเปิดใช้งานโดยอัตโนมัติเมื่อหน้าต่างเริ่มทำงานคุณสามารถเลือกทำอย่างใดอย่างหนึ่งต่อไปนี้:
- บันทึกไว้ในโฟลเดอร์ statup ผู้ใช้ทั้งหมด (Menu \ Programs \ Startup C: \ Users \ All Users \ Microsoft \ Windows \ Start
- สร้างงานด้วยตัววางแผนงานที่จะเรียกใช้สคริปต์เมื่อเริ่มต้น
ใช้วิธีอื่นที่คุณคิดว่าจะเปิดใช้งานสคริปต์
; If you don't want the kids to know there is a script running, enter this command at the top of the script.
#NoTrayIcon
; If you only want to disable hotkeys in Internet Explorer, you need to enter this command at the top. If you do not enter it, it will block all hotkeys in any program.
#ifwinactive ahk_class IEFrame
; Enter every hotkey that you want disabled in AutoHotkey Syntax
; http://www.autohotkey.com/docs/Hotkeys.htm
; Run this script at startup
^a:: ; this stands for Control-a
F9:: ; this stands for F9 (caret browsing)
F10:: ; this stands for F10 (alternative to alt)
LControl:: ; this should disable all hotkeys with the left control key
RControl:: ; this should disable all hotkeys with the right control key
LAlt:: ; Same for Alt
RAlt:: ; Same for Alt
LWin:: ; Same for Winkey
RWin::
Lshift:: ; you get the picture
Rshift::
WheelUp::
WheelDown:: ; This stands for the Scroll Wheel down command
ฉันได้ทดสอบสคริปต์นี้ทั้งเวอร์ชัน ahk และ exe และทำงานได้ตามที่ควร แม้ว่าฉันขอแนะนำอย่างยิ่งให้คุณทดสอบเครื่องของคุณก่อนการปรับใช้ วิธีเดียวที่จะป้องกันสคริปต์สำหรับการเริ่มต้นคือการบูตคอมพิวเตอร์ในเซฟโหมด โปรดทราบว่าประเภทต่างๆอาจทำการวิจัยด้วยตนเองและอาจพบโพสต์นี้)