@echo off
REM ============================================================
REM  SpliceVPN one-click installer
REM  Double-click this file. Approve the Windows admin prompt.
REM  It installs WireGuard for Windows (if needed) + the SpliceVPN agent.
REM ============================================================
echo.
echo  Installing SpliceVPN... a Windows security prompt will appear - click Yes.
echo.
powershell -NoProfile -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Stop'; [Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::Tls12; $f=Join-Path $env:TEMP 'install-splicevpn.ps1'; Invoke-WebRequest -UseBasicParsing 'https://splicevpn.com.au/install-splicevpn.ps1' -OutFile $f; & $f"
echo.
pause
