Files
PlaylistSaver/bin/mpv/nt/x86/mpv-unregister.bat
T

13 lines
206 B
Batchfile
Raw Normal View History

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