Bond
Bond

Reputation: 1

disabling alt+shift+print key combination by auto hot key script

I need a script of AHK for disabling the alt+shift+print key combination from the computer.

I have tried below script but the script is not working.

!Shift::return

Upvotes: 0

Views: 378

Answers (1)

Francisco
Francisco

Reputation: 111

Windows catches the shortcut on a lower level than Autohotkey so first you need to disable High Contrast Keyboard Shortcut (see Disable High Contrast Keyboard Shortcut in Windows 10).

Then this will work: +!PrintScreen::return

Upvotes: 0

Related Questions