19 lines
391 B
AutoHotkey
19 lines
391 B
AutoHotkey
InstallGameHub()
|
|
{
|
|
SetTitleMatchMode, RegEx
|
|
windowTitle := "^Tobii Game Hub$"
|
|
|
|
Run, "setup.exe"
|
|
WinWait % windowTitle,, 60
|
|
WinActivate % windowTitle
|
|
MouseClick, Left, 485, 365
|
|
MouseClick, Left, 600, 455
|
|
MouseClick, Left, 533, 623
|
|
MouseClick, Left, 936, 662
|
|
Sleep, 10 * 1000
|
|
WinActivate % windowTitle
|
|
WinGet, pid, PID
|
|
Run, pwsh -c "Stop-Process -Force %pid%"
|
|
}
|
|
|
|
InstallGameHub()
|