I am trying to change the default wallpaper from the XP default. Can anyone help me find where to change this. Is it a profile issue or a registery change?
at HKEY_USERS\.DEFAULT\Control Panel\Desktop modify the REG_SZ value Wallpaper to your liking... nothing new with XP in this regard.... ---
saybibi();
//john
#include <stddiscl.h>
You have to make a LogonScript that sets the WallPaper at every new user logon, because the wallpaper will not change until the user boots after 1. logon.
Script is VBscript:
Run at 1. logon (administrator):
'»»» Sets Wallpaper to None
WshShell.RegWrite "HKEY_USERS\.Default\Control Panel\Desktop\Wallpaper", "", "REG_SZ"
Run at 1. logon (user):
'»»» Sets Wallpaper
WshShell.RegWrite "HKEY_CURRENT_USER\Control Panel\Desktop\Wallpaper", "Path\bmp", "REG_SZ"
'»»» Sets Wallpaper to Center
WshShell.RegWrite "HKEY_CURRENT_USER\Control Panel\Desktop\WallpaperStyle", "0", "REG_SZ"
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.