Files
videoPlayer/uninstall-autostart.bat
2025-10-02 01:52:03 -06:00

19 lines
528 B
Batchfile

@echo off
echo Uninstalling Quantum Player Autostart...
echo.
if exist "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup\quantum-autostart.bat" (
del "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup\quantum-autostart.bat"
echo.
echo ========================================
echo Autostart uninstalled successfully!
echo Quantum Player will no longer start automatically.
echo ========================================
) else (
echo.
echo Autostart is not installed.
)
echo.
pause