After the Setup wizard finishes, optionally open Windows PowerShell as Administrator and run this read-only check. It confirms SQL, the Outlet Hub service, and the local readiness endpoint.
$sql = Get-Service -Name "MSSQLSERVER","MSSQL`$SQLEXPRESS" `
-ErrorAction SilentlyContinue
$service = Get-Service -Name "ZippiBillOutletHub" -ErrorAction Stop
$health = Invoke-RestMethod "http://localhost:5167/health/ready"
$sql | Select-Object DisplayName, Status, StartType
$service | Select-Object Name, Status, StartType
$health
infoThis script does not install or change anything. The Setup EXE performs installation and SQL detection. Do not edit the generated connection settings.