Where is the preference for the timing on wallpaper slideshows kept?

1

I feel like such a setting should be somewhere in the registry, but can't find anything which is obviously "time between change".

Bonus points if it's easy to change on a remote machine on the network!

BenjiHare

Posted 2016-09-15T09:04:10.027

Reputation: 13

Answers

0

I feel like such a setting should be somewhere in the registry

There is a registry entry which contains (but not controls) the current slideshow duration in miliseconds. It is

HKEY_CURRENT_USER\Control Panel\Personalization\Desktop Slideshow\Interval

You can change it, but the next time you use the theme, the duration will be 15 minutes again. That duration is copied from:

%USERPROFILE%\AppData\Local\Microsoft\Windows\Themes\theme_name\theme_name.theme

(a text file) where there is an item named Interval near the end of the file. You can change the value of that entry to, say:

Interval=14400000

which is 4 hours, or any other value. But I do not know where the 15 minutes duration comes initially from.

Source Windows 7/8 Wallpaper Registry Keys (Slideshow), answer by Apps


Further Reading

DavidPostill

Posted 2016-09-15T09:04:10.027

Reputation: 118 938

I should certainly learn to read more thoroughly! I'll give that a go ☺ – BenjiHare – 2016-09-15T12:41:52.887

@BenjiHare It's all a question of google-fu :) – DavidPostill – 2016-09-15T12:43:07.527

clearly I have much to learn in this art! (Plus it's easier to outsource while at work ;) ) – BenjiHare – 2016-09-15T13:10:07.330