@echo off
setlocal
set "SETUP=%~dp0FinkAsteroidMonitorSetup.exe"
set "LOG=%TEMP%\FinkAsteroidMonitorSetup.log"
if not exist "%SETUP%" (
  echo FinkAsteroidMonitorSetup.exe not found next to this file.
  exit /b 2
)
"%SETUP%" /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /LOG="%LOG%"
exit /b %ERRORLEVEL%
