No updates on the feedback piece I logged above, until this issue fixed upstream in the bigbox code I am just going to restart bigbox on wake. I created the following batch script to stop then start bigbox (I called it restartbigbox.cmd on my machine):
@echo off
REM Stop Bigbox
taskkill /im "bigbox.exe"
REM Bigbox has background processes run on exit, wait for those to finish and restart bigbox
REM Check if bigbox.exe is running, if it is loop, if not restart it
:check_process
tasklist | find "BigBox.exe" > nul
REM echo %errorlevel%
if %errorlevel% == 0 (
echo bigbox.exe found. Waiting 1 second...
timeout /t 1 /nobreak > nul
goto :check_process
) else (
start c:\launchbox\bigbox.exe
)
To trigger the script, I created a task in task scheduler to monitor for wake and then under action called the script: