Hi, @eric kline
Windows 10 does not show the filename of the current slideshow image directly, but you can usually retrieve it with PowerShell.
- Right-click Start and open Windows PowerShell.
- Paste this command and press Enter:
$TIC=(Get-ItemProperty 'HKCU:\Control Panel\Desktop' TranscodedImageCache -ErrorAction Stop).TranscodedImageCache; [System.Text.Encoding]::Unicode.GetString($TIC) -replace '(.+)([A-Z]:[0-9a-zA-Z\\])+','$2'
It should display the full path and filename of the current desktop image.
If it does not show the correct file, to help narrow this down:
- Is Settings > Personalization > Background currently set to Slideshow?
- Are the slideshow photos stored in a local folder, OneDrive, or another location?
- Are you using one monitor or multiple monitors?
Click "Add comment" to let me know.
Thanks!