Deploy: Npcap is a one-time MANUAL install per cockpit (operator consensus)

Retire the bundled-silent-installer requirement: postinstall now detects an
existing Npcap service and moves on, warns clearly when absent, and still
honors a bundled deploy\npcap.exe if one is shipped. package.ps1 no longer
flags the missing bundle as a warning.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Cyd
2026-07-10 23:49:36 -05:00
co-authored by Claude Fable 5
parent 4adfaf740a
commit 33a192a1fc
3 changed files with 22 additions and 10 deletions
+11 -5
View File
@@ -19,15 +19,21 @@ if not defined ROOT (
)
echo [postinstall] ROOT=!ROOT!
REM --- 1. Npcap silent install (bundled OEM-class installer supporting /S) --
REM --- 1. Npcap: POLICY (operator consensus 2026-07-10) = installed MANUALLY
REM once per cockpit. Detect an existing install; a bundled
REM deploy\npcap.exe is still honored if someone ships one.
set "NPCAP=!ROOT!\deploy\npcap.exe"
if exist "!NPCAP!" (
echo [postinstall] installing Npcap silently...
sc query npcap >nul 2>&1
if not errorlevel 1 (
echo [postinstall] Npcap already installed -- OK
) else if exist "!NPCAP!" (
echo [postinstall] installing bundled Npcap silently...
"!NPCAP!" /S
if errorlevel 1 ( echo [postinstall] ERROR: Npcap install failed & exit /b 1 )
) else (
echo [postinstall] WARNING: bundled Npcap not found at "!NPCAP!"
echo [postinstall] the pcap bridge will not work without it
echo [postinstall] WARNING: Npcap is NOT installed on this machine.
echo [postinstall] Run the Npcap installer manually ^(default options^),
echo [postinstall] then launch normally -- the pod's NIC bridge needs it.
)
REM --- optional: bundled VC++ runtime, if present --------------------------