@echo off rem ------------------------------------------------------------------------ rem MonitorSpider backup kit - DOUBLE-CLICK ME to start the setup wizard. rem rem Why this file exists: Windows marks files downloaded from the internet, rem and PowerShell then refuses to run unsigned .ps1 scripts directly. This rem launcher starts the wizard with -ExecutionPolicy Bypass so it just works; rem the wizard itself (setup.ps1, plain text - read it!) then asks Windows rem for administrator rights and walks you through everything. rem ------------------------------------------------------------------------ echo Starting the MonitorSpider backup setup wizard... powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0setup.ps1" if errorlevel 1 ( echo. echo Setup could not start. Get help at https://monitorspider.com/backup-kits/ pause )