|
Rank: Administration Joined: 4/9/2010 Posts: 871
|
Attached is an EXE that'll do it for you. Make sure to put it in your toolbox for one-click access. Here is the code: Code:using System; using System.Runtime.InteropServices;
class ResetWallpaper { public static void Main() { ResetWallpaper.SystemParametersInfo(0x0014, 0, IntPtr.Zero, 0x2); }
[DllImport("user32", SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)] public static extern bool SystemParametersInfo(uint uiAction, uint uiParam, IntPtr pvParam, uint fWinIni); }
|