Noktomezo

Disable Wallpaper Compression

Feb 1st, 2025
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Winbatch 2.27 KB | Source Code | 0 0
  1. :: ─────────────────────────────────────────────────────────────────────────────
  2. :: 🌆 DISABLE WALLPAPER COMPRESSION
  3. :: ─────────────────────────────────────────────────────────────────────────────
  4. :: 📖 Disables desktop wallpaper compression, thereby improving its quality
  5. :: ─────────────────────────────────────────────────────────────────────────────
  6. :: ©️ Copy & Paste it to your own .cmd/.bat file
  7. :: ─────────────────────────────────────────────────────────────────────────────
  8.  
  9.  
  10.  
  11. :: 📜 SCRIPT
  12. :: ─────────────────────────────────────────────────────────────────────────────
  13.  
  14. reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v "JPEGImportQuality" /t REG_DWORD /d "100" /f
  15.  
  16. :: ─────────────────────────────────────────────────────────────────────────────
  17.  
  18.  
  19.  
  20. :: 🔁 RESTORE DEFAULT VALUES
  21. :: ─────────────────────────────────────────────────────────────────────────────
  22.  
  23. reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v "JPEGImportQuality" /t REG_DWORD /d "85" /f
  24.  
  25. :: ─────────────────────────────────────────────────────────────────────────────
Advertisement
Add Comment
Please, Sign In to add comment