7 lines
570 B
Plaintext
7 lines
570 B
Plaintext
' edr-isolation-watch-hidden.vbs — launch the EDR isolation watcher with no visible window.
|
|
' Run via the "ClaudeTools - EDR Isolation Watcher" scheduled task through wscript.exe (a GUI
|
|
' host, no console), which starts bash with window style 0 (hidden) so the every-10-min watch
|
|
' no longer flashes a console window on the desktop. Runtime env is identical to a direct bash
|
|
' launch. Mirrors gps-rmm-progress-hidden.vbs.
|
|
CreateObject("WScript.Shell").Run """C:\Program Files\Git\bin\bash.exe"" -lc ""/c/claudetools/.claude/scripts/edr-isolation-watch.sh""", 0, False
|