Initial commit: Video player with HLS support
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
29
install-autostart.bat
Normal file
29
install-autostart.bat
Normal file
@@ -0,0 +1,29 @@
|
||||
@echo off
|
||||
echo Installing Quantum Player Autostart...
|
||||
echo.
|
||||
|
||||
REM Verificar si el archivo de autostart ya existe
|
||||
if exist "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup\quantum-autostart.bat" (
|
||||
echo Autostart already installed. Updating...
|
||||
del "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup\quantum-autostart.bat"
|
||||
)
|
||||
|
||||
REM Copiar el script de autostart al Startup folder
|
||||
copy "%~dp0quantum-autostart.bat" "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup\quantum-autostart.bat"
|
||||
|
||||
if %errorlevel% == 0 (
|
||||
echo.
|
||||
echo ========================================
|
||||
echo Autostart installed successfully!
|
||||
echo Quantum Player will start automatically when Windows boots.
|
||||
echo ========================================
|
||||
echo.
|
||||
echo You can disable autostart from the Settings panel in the app.
|
||||
) else (
|
||||
echo.
|
||||
echo ERROR: Failed to install autostart.
|
||||
echo Please run this script as Administrator.
|
||||
)
|
||||
|
||||
echo.
|
||||
pause
|
||||
Reference in New Issue
Block a user