Difference between revisions of "Powershell to set wallpaper"

From MyWiki
Jump to: navigation, search
Line 13: Line 13:
 
</source>
 
</source>
  
curl -Outfile c:\wall.jpg http://downloads.twig.tk/wall.jpg
+
curl -Outfile c:\wall.jpg http://downloads.twig.tk/wall.jpg<br>
 
Set-WallPaper -value "c:\wall.jpg"
 
Set-WallPaper -value "c:\wall.jpg"

Revision as of 09:26, 29 November 2017

Function Set-WallPaper($Value)
 
{
 
 Set-ItemProperty -path 'HKCU:\Control Panel\Desktop\' -name wallpaper -value $value
 
 rundll32.exe user32.dll, UpdatePerUserSystemParameters
 
}

curl -Outfile c:\wall.jpg http://downloads.twig.tk/wall.jpg
Set-WallPaper -value "c:\wall.jpg"