Notice that the desktop background slide show is not available in Windows 7 Home Basic and in Windows 7 Starter.
Como a Microsoft limita você, sua melhor chance é usar uma ferramenta de terceiros como o John's Background Switcher
JBS sits in your system tray (down by the clock) and changes your background at the time interval of your choosing. You tell it where to get pictures from and how to show them – maybe you just want to see one photo at a time or maybe you’d like to see a ‘Snapshot Scrapbook‘ of photos thrown across your desktop. It’s up to you and you never know what’s coming next!
(ou)
(ou)
Use o Powershell junto com uma tarefa agendada para alterar os planos de fundo periodicamente.
Esta é de longe a solução mais interessante e nerd. Vá para isso por favor! :)
$folder = "c:\Users\Public\Pictures\Wallpaper"
$file = Get-ChildItem $folder | Get-Random
$signature = @'
[DllImport("user32.dll")]
public static extern uint SystemParametersInfo(
uint uiAction,
uint uiParam,
string pvParam,
uint fWinIni);
'@
$type = Add-Type -MemberDefinition $signature '
-Name Win32Utils -Namespace SystemParametersInfo '
-PassThru
$null = $type::SystemParametersInfo(20, 0, $file.FullName, 3)
Leia mais sobre este guia abrangente: Apresentação de slides de plano de fundo da área de trabalho no Windows Home Basic, com o Powershell