Based on @tanascius answer, I came up with this code.
Windows 7:
var wpReg = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Internet Explorer\\Desktop\\General\\", false); var wallpaperPath = wpReg.GetValue("WallpaperSource").ToString(); wpReg.Close();
Windows XP:
var wpReg = Registry.CurrentUser.OpenSubKey("Control Panel\\Desktop", false); var wallpaperPath = wpReg.GetValue("WallPaper").ToString(); wpReg.Close();
source share