Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- :: ─────────────────────────────────────────────────────────────────────────────
- :: 📺 DISABLE HDCP
- :: ─────────────────────────────────────────────────────────────────────────────
- :: 📖 Disable copy protection technology that prevents unauthorized copying of digital content
- :: ─────────────────────────────────────────────────────────────────────────────
- :: ⚠️ For NVIDIA graphics card owners only
- :: ─────────────────────────────────────────────────────────────────────────────
- :: ©️ Copy & Paste it to your own .cmd/.bat file
- :: ─────────────────────────────────────────────────────────────────────────────
- :: 📜 SCRIPT
- :: ─────────────────────────────────────────────────────────────────────────────
- for /f %%a in ('reg query "HKLM\System\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}" /t REG_SZ /s /e /f "NVIDIA" ^| findstr "HKEY"') do (
- reg add "%%a" /v "RMHdcpKeyglobZero" /t REG_DWORD /d "1" /f
- ) >nul 2>&1
- :: ─────────────────────────────────────────────────────────────────────────────
- :: 🔁 RESTORE DEFAULT VALUES
- :: ─────────────────────────────────────────────────────────────────────────────
- for /f %%a in ('reg query "HKLM\System\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}" /t REG_SZ /s /e /f "NVIDIA" ^| findstr "HKEY"') do (
- reg add "%%a" /v "RMHdcpKeyglobZero" /t REG_DWORD /d "0" /f
- ) >nul 2>&1
- :: ─────────────────────────────────────────────────────────────────────────────
Advertisement
Add Comment
Please, Sign In to add comment