4

Is there a command to remove the desktop wallpaper and use a solid color?

2 Answers 2

0

An often described way is to use

reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v Wallpaper /t REG_SZ /d "" /f
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters

However, this doesn't work on Windows 7 (64bit?!) anymore; see this Technet post.

A proposed solution is to use the SetWallpaper tool. To remove the wallpaper run it in an elevated shell:

SetWallpaper /r
0

You can check this: reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v Wallpaper /t REG_SZ /d wallpaper_path /f

Hope this will help You

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .