Jump to content

Recommended Posts

Posted
Just wondered if anyone uses custom logon backgrounds in Windows 7 and how they've achieved it? I'm looking to customise the logon screen with our logo and some basic e-safety points. At the moment I use the interactive logon notice for this but it's not great.
Posted (edited)

Yep, see my script below.

 


md "C:\Windows\System32\oobe\info\backgrounds\"

copy \\DMS-FILE-02\apps$\LogonWallpaper\background1280x1024.jpg "C:\Windows\System32\oobe\info\backgrounds\background1280x1024.jpg" /y
copy \\DMS-FILE-02\apps$\LogonWallpaper\background1360x768.jpg "C:\Windows\System32\oobe\info\backgrounds\background1360x768.jpg" /y
copy \\DMS-FILE-02\apps$\LogonWallpaper\background1920x1200.jpg "C:\Windows\System32\oobe\info\backgrounds\background1920x1200.jpg" /y
copy \\DMS-FILE-02\apps$\LogonWallpaper\background1024x768.jpg "C:\Windows\System32\oobe\info\backgrounds\backgroundDefault.jpg" /y

regedit /s \\DMS-FILE-02\apps$\LogonWallpaper\logon.reg

echo %ComputerName% "Has Run the copy Process" >> "\\DMS-FILE-02\apps$\LogonWallpaper\wallpapercopy.txt"

 

Logon.reg

 

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\Background]
"OEMBackground"=dword:00000001


 

 

Note that you must have one called backgroundDefault.jpg, which i use the highest resolution for here 1920x1080. Then you can have others named as in the script.

Edited by fairm010
  • Thanks 1
Posted

Easy to do.

 

Replace C:\Windows\System32\oobe\info\backgrounds\backgroundDefault.jpg with your own image (got to be less than 128k in size off the top of my head)

Replace C:\ProgramData\Microsoft\User Account Pictures\user.bmp with your own logo if you want to

Set HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\Background

Value name OEMBackground

Value type REG_DWORD

Value data 0x1 (1)

 

HTH

Andrew

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...