Skip to content

Instantly share code, notes, and snippets.

@blubbll
Created April 26, 2021 10:28
Show Gist options
  • Save blubbll/8c2d90b16672d910dcbc28059149bb2a to your computer and use it in GitHub Desktop.
Save blubbll/8c2d90b16672d910dcbc28059149bb2a to your computer and use it in GitHub Desktop.
vrc-fpsfix
Set oShell = CreateObject("WScript.Shell")
Do while True
If oShell.AppActivate("VRChat") Then
' restore
oShell.SendKeys "% r"
' minimize
oShell.SendKeys "% n"
Wscript.Sleep(5 * 60 * 1000) 'wait 5 min between applying
Else Wscript.Sleep(10 * 60 * 1000) 'prog not found, wait 10 minutes
End If
Loop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment