Files
PlaylistSaver/bin/mpv/nt/x64/mpv-register.bat
T

13 lines
202 B
Batchfile
Raw Normal View History

2026-08-25 17:54:06 +08:00
@echo off
setlocal
"%~dp0/mpv" --register
if %errorlevel% neq 0 (
echo Registration failed. Make sure mpv is in the same folder as this script.
pause
exit /b %errorlevel%
)
pause
endlocal