petben Posted January 12, 2024 Posted January 12, 2024 Hello, has anyone had any luck setting a custom logon image in Windows 11? This is the background you see around the username/password log in box. FYI We have set: Computer GPO - "Force a specific default lock screen and logon image" pointing it to a jpg on C: Registry key DisableLogonBackgroundImage = 1 Prevent changing lock screen and logon image - Enabled Prevent enabling lock screen camera Enabled - Enabled Prevent enabling lock screen slide show - Enabled We have removed the Lock screen which works OK It just shows a grainy black image - any ideas? Thanks
Koldov Posted January 12, 2024 Posted January 12, 2024 I have no idea what I'm talking about as I've never used this, but what does this reg key do? Registry key DisableLogonBackgroundImage = 1 It may be a funny Microsoft quirk, or just bad english/syntax (or just the way I'm reading it)... But setting it to '1' reads to me like this would disable the image, so you only see a blank, coloured background. "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System DWORD DisableLogonBackgroundImage 0 or delete = enable 1 = disable" https://www.tenforums.com/tutorials/9108-enable-disable-sign-screen-background-image-windows-10-a.html
thimon Posted January 12, 2024 Posted January 12, 2024 I got rid of the lock screen, replaced the sad cyclops with our school logo, replaced Other User with our school name and set the logon page background to change every hour (cycles through a selection of photos of the school). I’ll have a look on Monday and will let you know what settings and policies I push out. 4
Mr.Ben Posted January 14, 2024 Posted January 14, 2024 I got rid of the lock screen, replaced the sad cyclops with our school logo, replaced Other User with our school name and set the logon page background to change every hour (cycles through a selection of photos of the school). I’ll have a look on Monday and will let you know what settings and policies I push out.Yes please!
kidpressingbuttons Posted January 22, 2024 Posted January 22, 2024 Cant seem to get the other user text to change... Still the old credprovhost.dll ?
Popular Post thimon Posted January 30, 2024 Popular Post Posted January 30, 2024 Sorry I've taken so long, was harder than I thought putting time aside! Hopefully the following link works, I've documented the process I've setup here. Let me know if the link doesn't work. 6
ICT_GUY Posted February 6, 2024 Posted February 6, 2024 Lock screen changing is also dependent on OS version. I fell foul of this a long time ago. Windows education version works easily via gpo. You can also change the Windows version by using a script to change the kms key to an edu key, then activate using your kms key using you KMS key on your DC / kms server.
thimon Posted February 8, 2024 Posted February 8, 2024 IIRC Windows MUST be activated too! That’s a given surely?
EssentialRug Posted February 19, 2024 Posted February 19, 2024 Sorry I've taken so long, was harder than I thought putting time aside! Hopefully the following link works, I've documented the process I've setup here. Let me know if the link doesn't work. Is this possible to deploy via Intune?
thimon Posted February 19, 2024 Posted February 19, 2024 Is this possible to deploy via Intune? Probably, it’s mainly just file replacements. We’re not an InTune environment, so I can’t 100% confirm sorry.
KK20 Posted February 29, 2024 Posted February 29, 2024 (edited) We do this in intune, I find it easier to have the lockscreen JPG on the machine itself. I create a SYSTEM WIN32 package containing my lockscreen.jpg and a batch file. This is the batch file: @echo off xcopy %~dp0lockscreen.jpg "C:\windows\web\screen\" /C /Q /H /R /Y reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\PersonalizationCSP" /v LockScreenImagePath /t REG_SZ /d "C:\windows\web\screen\lockscreen.jpg" /f /reg:64 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\PersonalizationCSP" /v LockScreenImageUrl /t REG_SZ /d "file:///C:\windows\web\screen\lockscreen.jpg" /f /reg:64 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\PersonalizationCSP" /v LockScreenImageStatus /t REG_DWORD /d 0 /f /reg:64 detection rule consists of file check and reg keys. For the lockscreen settings this is a USER WIN32 - just a batch file (this has a couple of extras you dont need such as start menu button moving to the left and I set an initial lilac background): @echo off reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v NOC_GLOBAL_SETTING_ALLOW_TOASTS_ABOVE_LOCK /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v RotatingLockScreenOverlayEnabled /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings" /v TaskbarAl /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v RotatingLockScreenOverlayEnabled /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v RotatingLockScreenOverlayEnabled /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338387Enabled" /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SubscribedContent-338389Enabled" /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SystemPaneSuggestionsEnabled /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SoftLandingEnabled /t REG_DWORD /d 0 /f /reg:64 ::taskbar reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowCopilotButton /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarAl /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarAutoHideInTabletMode /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowTaskViewButton /t REG_DWORD /d 0 /f /reg:64 reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v ShowTaskViewButtonBingSearchEnabled /t REG_DWORD /d 0 /f /reg:64 ::set single colour background (lilac) reg add "HKCU\Control Panel\Colors" /v "Background" /t REG_SZ /d "204 197 252" /f /reg:64 reg add "HKCU\Control Panel\Desktop" /v "Wallpaper" /t REG_SZ /d "" /f /reg:64 Edited February 29, 2024 by KK20 2
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now