@echo off REM ============================================================ REM uninstall-autostart.bat - remove the web-vnc startup task. REM Deletes the scheduled task "web-vnc" created by REM install-autostart.bat. Requires administrator rights REM (auto-elevates). REM ============================================================ cd /d "%~dp0" net session >nul 2>nul if errorlevel 1 ( echo Requesting administrator rights ... powershell -Command "Start-Process -FilePath '%~f0' -Verb RunAs" exit /b ) set "TASK=web-vnc" echo Removing scheduled task "%TASK%" ... schtasks /Delete /TN "%TASK%" /F if errorlevel 1 ( echo [error] Could not remove the task (maybe it does not exist). pause exit /b 1 ) echo Done. pause