Advertisement

Desktop Wallpaper Location Context Menu in Windows 10

The image you use as the desktop background can be the one that ships by default with Windows 10, or some image from your personal collection. Your background can also be set by any other app like your web browser or an app which downloads images from the Internet. Once you notice an image you like on your Desktop, you might want to find its location on the disk drive so you can save it for further use. Here is how to add a special context menu command to find the image quickly.

Advertisеment

Here is how the context menu looks:

Desktop Wallpaper Location Context Menu In Windows 10

Windows 10 keeps the path to the source image as a binary value in the Registry. When you set an image as your desktop background, it will be converted to match your screen and position preferences like fill, zoom, fit etc. The path to the source image is written in a binary value named TranscodedImageCache at the following Registry key:

HKEY_CURRENT_USER\Control Panel\Desktop

See the following screenshot: Windows 10 TranscodedImageCacheTo extract the path of the image from the TranscodedImageCache value, we'll use a special VB script described in the article Find your current wallpaper image path in Windows 10.

The script looks as follows:

Const HKCU = &H80000001 'HKEY_CURRENT_USER

sComputer = "."   

Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" _
            & sComputer & "\root\default:StdRegProv")

sKeyPath = "Control Panel\Desktop\"
sValueName = "TranscodedImageCache"
oReg.GetBinaryValue HKCU, sKeyPath, sValueName, sValue


sContents = ""

For i = 24 To UBound(sValue)
  vByte = sValue(i)
  If vByte <> 0 And vByte <> "" Then
    sContents = sContents & Chr(vByte)
  End If
Next

CreateObject("Wscript.Shell").Run "explorer.exe /select,""" & sContents & """"

Let's integrate it with the context menu of File Explorer. To save your time, I prepared a set of files which includes the script above and two ready-to-use Registry files to add or remove the context menu item.

To add "Desktop Wallpaper Location" Context Menu in Windows 10, do the following.

Download the following ZIP archive:

Download Files

Extract the archive contents to any folder you like.

Archive Contents

Unblock the extracted files.

Copy or move the file WallpaperPath.vbs to the folder "C:\Windows\System32". Confirm the UAC prompt if prompted.

Copy Script To System32

Double-click the file "Add Desktop Wallpaper Location.reg" to add the context menu entry.

Import Tweak

Now, right click the Desktop and test the context menu command. It should open your current wallpaper in a new File Explorer window.

Desktop Wallpaper Location Context Menu In Windows 10Desktop Wallpaper Location Opened In Windows 10

To remove the context menu item, double-click the file "Remove Desktop Wallpaper Location.reg" and remove the file C:\Windows\System32\WallpaperPath.vbs.

To save your time, you can use Winaero Tweaker. It will allow you to enable the entry with one click.

Tweaker Desktop Wallpaper Location

You can download Winaero Tweaker here:

Download Winaero Tweaker

That's it.

Support us

Winaero greatly relies on your support. You can help the site keep bringing you interesting and useful content and software by using these options:

If you like this article, please share it using the buttons below. It won't take a lot from you, but it will help us grow. Thanks for your support!

Advertisеment

Author: Sergey Tkachenko

Sergey Tkachenko is a software developer who started Winaero back in 2011. On this blog, Sergey is writing about everything connected to Microsoft, Windows and popular software. Follow him on Telegram, Twitter, and YouTube.

2 thoughts on “Desktop Wallpaper Location Context Menu in Windows 10”

Leave a Reply

Your email address will not be published.

css.php
Using Telegram? Subscribe to the blog channel!
Hello. Add your message here.