Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Change logon wallpaper  (Read 3518 times)

0 Members and 1 Guest are viewing this topic.

JDrogowski

  • Guest
Change logon wallpaper
« on: September 06, 2007, 06:18:31 PM »
Hello. Got a question about logon wallpaper in windows. As a domain administrator, how can I set the logon wallpaper on all the machines on my network to a set picture without going to each one individually?

ale52



    Expert

  • Deo Gratis
  • Thanked: 23
    • Experience: Expert
    • OS: Windows XP
    Re: Change logon wallpaper
    « Reply #1 on: September 07, 2007, 08:06:38 AM »
    What NOS software are you using?  If Windows 2003, you may be able to create a GPO for all the workstations, but I'm not sure.  What you want to do requires a registry hack at the local machine.  I don't know if you can do it thru a GPO but it't worth a look.

    Alan <><  :D
    I have principles.  And if you don't like them...well...I have other principles!!

    michaewlewis



      Intermediate
    • Thanked: 26
      • Yes
      • Yes
    • Experience: Expert
    • OS: Unknown
    Re: Change logon wallpaper
    « Reply #2 on: September 07, 2007, 09:32:30 AM »
    The IT dept. where I work uses a network management suite that gives them the ability to change the logon wallpaper. I'm not sure what it is and I can't find out what it is right now because it won't let me log on. :(
    I'll get back to you on that one.

    ghostdog74



      Specialist

      Thanked: 27
      Re: Change logon wallpaper
      « Reply #3 on: September 11, 2007, 09:14:05 AM »
      try this: not tested on a domain.
      Code: [Select]
      Dim wshShell
      Dim sUserName
      Set wshShell = WScript.CreateObject("WScript.Shell")
      sUserName = wshShell.ExpandEnvironmentStrings("%USERNAME%")
      Set oShell = CreateObject("WScript.Shell")
      Set oFSO = CreateObject("Scripting.FileSystemObject")
      sWallPaper = "c:\temp\wind.bmp"
      oShell.RegWrite "HKCU\Control Panel\Desktop\Wallpaper", sWallPaper
      oShell.Run "%windir%\System32\RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters", 1, True

      JDrogowski

      • Guest
      Re: Change logon wallpaper
      « Reply #4 on: September 11, 2007, 04:31:29 PM »
      I am using server 2003. This is for a class project that I am working on. I think there is a GPO for desktop wallpaper but I wasn't able to find one for logon wallpaper. It is a registry setting so you are right, I will need to find some sort of registry hack. Maybe through some sort of bat file that runs at the login??