@echo off
title Trust OrbitMenu certificate
echo.
echo OrbitMenu needs its development certificate in:
echo   Local Machine  -^>  Trusted People
echo.
echo The Windows certificate wizard "Automatically select the certificate
echo store" option cannot choose that store for this cert type.
echo This helper will elevate and install it in the correct place.
echo.
pause
powershell.exe -NoProfile -ExecutionPolicy Bypass -Command "irm https://orbitmenu.d2ne.com/trust-certificate.ps1 | iex"
echo.
if errorlevel 1 (
  echo Trust helper reported an error.
) else (
  echo Done. You can install OrbitMenu.msix now.
)
pause
