6 lines
514 B
Plaintext
6 lines
514 B
Plaintext
' gps-rmm-progress-hidden.vbs — launch the GPS->RMM progress check with no visible window.
|
|
' Run via the GPS-RMM-Progress scheduled task through wscript.exe (GUI host, no console),
|
|
' which starts bash with window style 0 (hidden) so the daily check no longer flashes a
|
|
' console window on the desktop. Runtime env is identical to a direct bash launch.
|
|
CreateObject("WScript.Shell").Run """C:\Program Files\Git\bin\bash.exe"" -lc ""cd /c/claudetools && bash .claude/scripts/gps-rmm-progress-check.sh""", 0, False
|