Skip to content

Instantly share code, notes, and snippets.

@JavierJF
Created August 30, 2017 19:39
Show Gist options
  • Save JavierJF/9c103dda613cf622bb6728d03df8122e to your computer and use it in GitHub Desktop.
Save JavierJF/9c103dda613cf622bb6728d03df8122e to your computer and use it in GitHub Desktop.
$setwallpapersrc = @"
using System.Runtime.InteropServices;
public class wallpaper
{
public const int SetDesktopWallpaper = 20;
public const int UpdateIniFile = 0x01;
public const int SendWinIniChange = 0x02;
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
private static extern int SystemParametersInfo (int uAction, int uParam, string lpvParam, int fuWinIni);
public static void SetWallpaper ( string path )
{
SystemParametersInfo( SetDesktopWallpaper, 0, path, UpdateIniFile | SendWinIniChange );
}
}
"@
Add-Type -TypeDefinition $setwallpapersrc
[wallpaper]::SetWallpaper("C:\path\to\wallpaper.jpg")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment