🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
528 B
Batchfile
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
|