Lock screen image change in Windows 10

-1

I need to change the Lock screen image.

By default, "Windows spotlight" is selected.

Is there a way to change this to "Picture" using the registry settings (regedit)?

Tried below things:

Set LockScreenImage = "C:\Windows\Web\Screen\img100.jpg" @ HKLM:\Software\Policies\Microsoft\Windows\Personalization

Placed the image what to be displayed in lock screen at:

C:\WINDOWS\Web\Screen\img100.jpg. 

New users are getting this img100.jpg at the lock screen but not for the current user.

And also if we change to "Picture" at Personalization -> Lock screen -> Background, then img100.jpg is getting selected and set at the lock screen.

Mahadevan G

Posted 2016-04-07T11:13:24.460

Reputation: 21

Are you looking specifically for a registry hack, or is using the regular method, accessing the settings enough? Since Windows 8, you can configure the lock screen image using the Settings screen. – LPChip – 2016-04-07T11:37:41.927

I removed the "spotlight" tag because it is a Mac OS application. – CharlieRB – 2016-04-07T13:08:38.740

Answers

1

Scrapping my previous answer, since I see you want to do it via Registry. That's a terrible idea, registry hacking is always a last resort, since it breaks so easily. All I can say is good luck; the key you want is HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Lock Screen, but the format is completely opaque, and that's not all: The actual lock images are stored in a folder C:\ProgramData\Microsoft\Windows\SystemData\{SID}\ReadOnly\LockScreen_B, which is normally secured for SYSTEM only.

Forget the registry, just use Powershell to call the API; you can easily set it in 2-3 lines.

SilverbackNet

Posted 2016-04-07T11:13:24.460

Reputation: 962