Last active
November 10, 2021 07:33
-
-
Save ahmet-cetinkaya/0f5f993256bc35b701543895b4fa4571 to your computer and use it in GitHub Desktop.
Autohotkey script to Auto-close the Voicemeeter windows that open when startup.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv | |
SetWorkingDir %A_ScriptDir% | |
CoordMode, Mouse, Window | |
SendMode Input | |
#SingleInstance Force | |
SetTitleMatchMode 2 | |
#WinActivateForce | |
SetControlDelay 1 | |
SetWinDelay 0 | |
SetKeyDelay -1 | |
SetMouseDelay -1 | |
SetBatchLines -1 | |
Macro1: | |
WinWait, About... ahk_exe voicemeeterpro.exe | |
Sleep, 10 | |
WinClose, About... ahk_exe voicemeeterpro.exe | |
Sleep, 10 | |
WinWait, VoiceMeeter ahk_exe voicemeeterpro.exe | |
Sleep, 10 | |
WinClose, VoiceMeeter ahk_exe voicemeeterpro.exe | |
Sleep, 10 | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment