; Borderless Windowed Fullscreen - AutoHotkey Script ; A simple AutoHotkey script that will force this mode for me. The script removes the window border and title bar of any window, and moves the window so that it fills the screen: ^!f:: WinGetTitle, currentWindow, A IfWinExist %currentWindow% { WinSet, Style, ^0xC00000 ; toggle title bar WinMove, , , 0, 0, 1920, 1080 } return ; The hotkey is Control+Alt+f. It applies changes to whatever window has focus. ; Note that you'll need to have your game in windowed mode, set to your desktop's resolution. ; Also change "1280, 1024" to whatever your resolution is. Press the hotkey and bam! Maximized Fullscreen goodness. ; It even toggles back and forth if you press the hotkey again. ; While the hotkey works on many games, some games are stubborn and don't want the window border removed. In that case, I have another hotkey that is a bit more forceful. ^!g:: WinGetTitle, currentWindow, A IfWinExist %currentWindow% { WinSet, Style, -0xC00000 ; hide title bar WinSet, Style, -0x800000 ; hide thin-line border WinSet, Style, -0x400000 ; hide dialog frame WinSet, Style, -0x40000 ; hide thickframe/sizebox WinMove, , , 0, 0, 1920, 1080 } return ; To use script, the hotkey is Control+Alt+g. ; Toggle Sound Devices ScrollLock:: toggle:=!toggle ;toggles up and down states. Run, mmsys.cpl WinWait,Sound ; Change "Sound" to the name of the window in your local language if toggle ControlSend,SysListView321,{Down 1} ; This number selects the matching audio device in the list, change it accordingly Else ControlSend,SysListView321,{Down 2} ; This number selects the matching audio device in the list, change it accordingly ControlClick,&Set Default ; Change "&Set Default" to the name of the button in your local language ControlClick,OK return ^!c:: { Send, ^c Sleep 50 Run, http://www.google.com/search?q=%clipboard% Return }