Image result for change wallpaper windows 10Image result for change wallpaper windows 10

To change windows desktop wallpaper-: what we normally do is right click on the desktop and go properties and so on. But we can do the same by editing registry key using reg command from command line. The command is given below.
reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v Wallpaper /t REG_SZ /d  wallpaper_path /f
For example to set the image E:\photos\image1.bmp as the wall paper we need to run the command as below
reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v Wallpaper /t REG_SZ /d E:\photos\image1.bmp /f
After editing the registry key we need to run the below command to make the change take effect immediately.
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters
Note-: This method works only for bmp images. If you have .jpg or .jpeg images you can’t set them as wallpaper from command line. You can use the Desktop settings UI to set a .jpg or .jpeg file as wallpaper.