Skip to content

Instantly share code, notes, and snippets.

@tdalon
Last active April 29, 2026 14:59
Show Gist options
  • Select an option

  • Save tdalon/006471eb9d0bb2cf3c3abc42e252012f to your computer and use it in GitHub Desktop.

Select an option

Save tdalon/006471eb9d0bb2cf3c3abc42e252012f to your computer and use it in GitHub Desktop.
Teams Toggle Sharing Control Bar
#Requires AutoHotkey v1
#NoEnv
#NoTrayIcon
#SingleInstance Force
SetTitleMatchMode, 1
Names := ["Sharing control bar", "Freigabesteuerungsleiste"]
for _, Name in Names
{
wTitle := Name . " ahk_exe ms-teams.exe"
if WinExist(wTitle) {
WinHide, %wTitle%
} else {
WinShow, %wTitle%
}
}
@tdalon
Copy link
Copy Markdown
Author

tdalon commented Apr 29, 2026

Support English and German version

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment