21 lines
429 B
AutoHotkey
21 lines
429 B
AutoHotkey
InstallGhost()
|
|
{
|
|
SetTitleMatchMode, RegEx
|
|
windowTitle := "^Tobii Ghost$"
|
|
|
|
Run, "setup.exe"
|
|
WinWait % windowTitle,, 60
|
|
WinActivate % windowTitle
|
|
MouseClick, Left, 44, 694
|
|
MouseClick, Left, 330, 752
|
|
WinWaitNotActive
|
|
WinWait % windowTitle,, 20
|
|
MouseClick, Left, 563, 397
|
|
MouseClick, Left, 650, 497
|
|
Sleep, 10 * 1000
|
|
WinActivate % windowTitle
|
|
WinGet, pid, PID
|
|
Run, pwsh -c "Stop-Process -Force %pid%"
|
|
}
|
|
|
|
InstallGhost()
|