Skip to content

Instantly share code, notes, and snippets.

View ldon-bird's full-sized avatar

Dong ldon-bird

  • Nanyang Technological University, Singapore
  • SIngapore & China
View GitHub Profile
@ldon-bird
ldon-bird / keepOnline.ps1
Created July 15, 2025 06:45
Keep online on MS Teams
# Periodic Scroll Lock toggling, every 4mins = 240s,
# should keep you "online" on Teams for most configurations.
# I personally recommend using it with PowerToys Awake [https://learn.microsoft.com/en-us/windows/powertoys/awake]
$wShell = New-Object -ComObject "WScript.Shell"
function Toggle-ScrollLock {
$wShell.SendKeys("{SCROLLLOCK}")
Start-Sleep -Milliseconds 100
$wShell.SendKeys("{SCROLLLOCK}")