Standalone mpv (portable) writes zero registry keys — it is a single .exe or portable package. All config lives in mpv.conf and input.conf in the portable_config/ or %APPDATA%\mpv\ directory.
mpv.net is the most popular Windows GUI wrapper for mpv and does write registry keys (per-user install).
mpv.net can optionally register file associations via its Settings dialog — this creates additional HKCU\SOFTWARE\Classes entries for video/audio formats.
# Find mpv.net install location(Get-ItemProperty"HKCU:\SOFTWARE\mpv"-ErrorActionSilentlyContinue).InstallDir# Check if mpv is in PATH (standalone)Get-Commandmpv-ErrorActionSilentlyContinue|Select-ObjectSource