The image that you use as the wallpaper can be the one that comes by default with Windows 10, or an image from your personal collection. At Winaero, we have a huge set of themes with beautiful wallpapers that you can download free. Your background can also be set by another application as your web browser or desktop Bing that downloads images from the internet. Once you see a picture you like on your desktop, you can find its location on the hard drive so you can save it for later use.
This is a script file (* .VBS) that extracts the path of your current image file wallpaper from the registry and showing it to you. It is very useful, because the only thing you need is to do is double-click the script.
Windows 10 keeps the path to the source image as a binary value in the registry. When you set an image as wallpaper, it will be converted to match your screen and position preferences as filler, zoom, fit, etc. The path to the source image is written in a binary value named TranscodedImageCache in the following registry key:
HKEY_CURRENT_USER Control Panel Desktop
See capturing following screen:
to extract the path of the image value TranscodedImageCache, you need to run this script:
Const HKCU = & H80000001 's Computer HKEY_CURRENT_USER = "." Set Oreg = GetObject ( "winmgmts: {impersonationLevel = impersonate} \" & _ & s Computer " 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 & & "" ""
You can paste this text into Notepad and then save it as a VBS file. Alternatively, you can download the file from here:
Download VBS Script to display your bottom position of the current office
Extract to a folder you want and double click it. Immediately, the folder containing the wallpaper image will open and the image will be selected in the file browser. Here's how it looks in my case :.
This is
0 Komentar