- connect-board.ps1 / .bat: PowerShell twin of connect-board.sh so teams on Windows 11 attach the USB Uno Q to the local self-host stack (adb forward + self-register; -Watch for auto-reattach; .bat bypasses execution policy) - provision-wifi.sh: idempotent nmcli join over adb, venue WiFi baked as default - provision-fleet.sh: run the WiFi step per board during fleet bring-up - REQUIREMENTS.md: Windows 11 section (Docker+WSL2, native adb, USB driver), 'does adb see your board?' check, and correct the WiFi reality (board needs venue WiFi for the cloud brain; we pre-join it) Co-Authored-By: Claude Opus 4.8 <[email protected]>
9 lines
369 B
Batchfile
9 lines
369 B
Batchfile
@echo off
|
|
REM connect-board.bat - double-click launcher for connect-board.ps1 on Windows.
|
|
REM Runs the PowerShell script with the execution policy bypassed for this run
|
|
REM only (nothing is changed system-wide). Pass -Watch to keep re-attaching:
|
|
REM connect-board.bat -Watch
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0connect-board.ps1" %*
|
|
echo.
|
|
pause
|