Skip to content

Instantly share code, notes, and snippets.

Created August 4, 2013 12:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/2272d26c185f206944c1 to your computer and use it in GitHub Desktop.
Save anonymous/2272d26c185f206944c1 to your computer and use it in GitHub Desktop.
Run("c:\windows\system32\control.exe mmsys.cpl")
WinWaitActive("Sound")
WinSetOnTop ("Sound","Sound", 1 )
send("{DOWN 2}")
if ControlCommand("Sound", "", 1002, 'IsEnabled') Then
ControlClick("Sound", "Set Default", 1002)
$message = "Speakers"
else
send("{DOWN}")
ControlClick("Sound", "Set Default", 1002)
$message = "Headset"
EndIf
WinClose("Sound")
TrayTip("", $message, 5)
Sleep(2000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment