Is there a way to get a Windows 10 lock screen slide show without tiling or zooming?

2

The short explanation is that I'd like to have the lock screen on my Windows 10 systems behave like the desktop background slideshow, only displaying one image at a time, (ideally) crossfading between them, and not tiling, cropping, or zooming.

I've got a number of custom desktop background images derived from astronomy images (mostly composites). By their very nature, they can't be auto-cropped or zoomed and still look reasonably good simply because I've already cropped them such that there's essentially nothing but the subject anywhere in the picture. As a result, when tilted or zoomed by the lock screen slideshow in Windows 10, they look pretty bad (tiling in particular often results in it looking like one very poorly made composite mosaic). I would really love to have these backgrounds playing on the lock screen in a slide show, but there's no point if they look horrible half the time.

If anyone knows of a way to do this on WIndows 8 or 8.1, that may actually be helpful here too (not much has changed about the lock screen in 10 relative to 8 and 8.1).

Also, while I would prefer a solution involving static settings (even if it's a registry or GPO hack), I'm also open to scheduling a PowerShell script to do this (I just don't have the skill with PowerShell to get something like that working).

Austin Hemmelgarn

Posted 2017-08-23T13:09:56.513

Reputation: 4 345

Answers

1

Create a new registry DWORD value called "SlideshowLayout" in

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Lock Screen

As far as I can tell you can combine a string of numbers together to "program" the slideshow behavior. Each number is between 1 and 9. The slide show will start with the least significant digit first.

Here is the meaning of each number:

  1. Display one image positioned horizontally with no tiling
  2. Tile two images positioned horizontally
  3. Tile three images positioned horizontally
  4. Tile four images positioned horizontally
  5. Tile five images positioned horizontally
  6. Tile six images positioned horizontally
  7. Display one image positioned vertically with no tiling
  8. Tile two images positioned vertically
  9. Tile three images positioned vertically

So if you set the DWORD to 4111 it should show a series of 3 horizontal images followed by a tiled image of 4 images.

Source: Lock Screen Slideshow showing tiled photos

Rich C

Posted 2017-08-23T13:09:56.513

Reputation: 179

I actually hadn't seen that particular post, though like the OP there, the given registry key doesn't appear to be affecting things at all. – Austin Hemmelgarn – 2017-10-16T19:46:07.800