@echo off
:: Windows double-click installer. Double-click this file — it downloads and runs
:: the Bearhole installer (which asks where to install and makes the shortcuts).
:: No admin needed. If SmartScreen warns, click "More info" -> "Run anyway".
setlocal
set "SITE=https://bearhole.dk"
echo Downloading the Bearhole installer...
powershell -NoProfile -ExecutionPolicy Bypass -Command ^
  "[Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::Tls12; $f=Join-Path $env:TEMP 'bearhole-install.ps1'; Invoke-WebRequest -Uri '%SITE%/install.ps1' -OutFile $f -UseBasicParsing; & $f"
echo.
pause
