This file contains hidden or 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
# 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}") |