How could I find out the path to the current desktop image?












16















I have Windows 7 displaying random images every minute from all of my photo directories and every so often there is one I really want to see again.



How can I either always display on the screen the image path/filename? Or perhaps I could simply look at a registry setting or something at the time the image is being displayed to find out the image path / filename?










share|improve this question




















  • 1





    Reg: location of files, refer: superuser.com/q/207852/4377

    – Sathyajith Bhat
    Feb 12 '11 at 9:08








  • 1





    Also see this question for Windows 8: superuser.com/questions/507571/…

    – Scott Bennett-McLeish
    Mar 19 '13 at 0:31
















16















I have Windows 7 displaying random images every minute from all of my photo directories and every so often there is one I really want to see again.



How can I either always display on the screen the image path/filename? Or perhaps I could simply look at a registry setting or something at the time the image is being displayed to find out the image path / filename?










share|improve this question




















  • 1





    Reg: location of files, refer: superuser.com/q/207852/4377

    – Sathyajith Bhat
    Feb 12 '11 at 9:08








  • 1





    Also see this question for Windows 8: superuser.com/questions/507571/…

    – Scott Bennett-McLeish
    Mar 19 '13 at 0:31














16












16








16


5






I have Windows 7 displaying random images every minute from all of my photo directories and every so often there is one I really want to see again.



How can I either always display on the screen the image path/filename? Or perhaps I could simply look at a registry setting or something at the time the image is being displayed to find out the image path / filename?










share|improve this question
















I have Windows 7 displaying random images every minute from all of my photo directories and every so often there is one I really want to see again.



How can I either always display on the screen the image path/filename? Or perhaps I could simply look at a registry setting or something at the time the image is being displayed to find out the image path / filename?







windows-7 images desktop






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 12 '11 at 9:07









Sathyajith Bhat

52.9k29156252




52.9k29156252










asked Feb 12 '11 at 9:00









Scott Bennett-McLeishScott Bennett-McLeish

5542819




5542819








  • 1





    Reg: location of files, refer: superuser.com/q/207852/4377

    – Sathyajith Bhat
    Feb 12 '11 at 9:08








  • 1





    Also see this question for Windows 8: superuser.com/questions/507571/…

    – Scott Bennett-McLeish
    Mar 19 '13 at 0:31














  • 1





    Reg: location of files, refer: superuser.com/q/207852/4377

    – Sathyajith Bhat
    Feb 12 '11 at 9:08








  • 1





    Also see this question for Windows 8: superuser.com/questions/507571/…

    – Scott Bennett-McLeish
    Mar 19 '13 at 0:31








1




1





Reg: location of files, refer: superuser.com/q/207852/4377

– Sathyajith Bhat
Feb 12 '11 at 9:08







Reg: location of files, refer: superuser.com/q/207852/4377

– Sathyajith Bhat
Feb 12 '11 at 9:08






1




1





Also see this question for Windows 8: superuser.com/questions/507571/…

– Scott Bennett-McLeish
Mar 19 '13 at 0:31





Also see this question for Windows 8: superuser.com/questions/507571/…

– Scott Bennett-McLeish
Mar 19 '13 at 0:31










6 Answers
6






active

oldest

votes


















25














I am not sure if this works on every version of Windows 7 but on my Windows 7 Ultimate 64-bit it does. I also did not test this out when changing themes. If I manually changed the background picture or select a folder of pictures to slideshow through then the registry value that I query below seems to always be updated with the path to the current image.



There are several ways to make this better (like automatically opening Windows Explorer to the folder the picture is in or launching the picture directly) but this could get you started.



I created a batch file on my Desktop named path2pic.bat and had the following code in there:



@echo off

echo.

echo The path to the current Desktop background image is:

echo.
echo.

REG QUERY "HKCUSoftwareMicrosoftInternet ExplorerDesktopGeneral" /v WallpaperSource

echo.
echo.

pause

exit


Then I created a shortcut to the batch file, assigned a Shortcut Key like Ctrl+Shift+P to it, and any time I want to know the path to the image I press the Shortkut Keys and the batch file shows me the path.






share|improve this answer


























  • Great, well done! I'd just remove the final exit call, so to keep the console open. In the likely scenario where wallpaper changes from time to time, if you inadvertently press a key and then wallpaper changes, the info is lost.

    – superjos
    Jun 10 '12 at 10:09











  • A while back I posed the same question for Windows 8 after migrating to it. There's a different answer so worth taking into consideration: superuser.com/questions/507571/…

    – Scott Bennett-McLeish
    Mar 19 '13 at 0:31











  • If I remove @echo off it works. Windows 7 ultimate.

    – Olivier Pons
    Oct 31 '13 at 8:33











  • This trick does Not work anymore. It always says WallpaperSource REG_SZ C:WINDOWSwebwallpaperWindowsimg0.jpg

    – thenonhacker
    Feb 24 '15 at 9:09













  • @thenonhacker it still works for me, I'm on Windows 7.

    – Marv
    Jun 28 '15 at 2:09



















12














The path to the current Wallpaper is located in the following register key:



HKEY_CURRENT_USERControl PanelDesktopWallpaper 


Open the start menu and in the search box, type "regedit". Navigate to the above key throught the registry explorer on the left. When you single click the "Desktop" folder, at the right, a list with keys will be displayed. Look for the one that's titled "Wallpaper". The value will be the location of the current wallpaper.






share|improve this answer
























  • Not working in Win 10. Gives the path to a "Transcoded" Wallpaper!

    – ps95
    Oct 12 '16 at 19:48



















4














Here's a solution that locates the current wallpaper and show it in Windows Explorer:



How to Add “Desktop Background File Location” Option to Desktop Right-Click Menu in Windows 7
http://www.winhelponline.com/blog/desktop-background-file-location-right-click-menu-windows-7/



enter image description here



enter image description here






share|improve this answer































    2














    copy "C:UserstestAppDataRoamingMicrosoftWindowsThemesTranscodedWallpaper" to image.jpg



    'test' is your user name,
    image.jpg is the current image in the slide.






    share|improve this answer
























    • That might save the image, but it does not answert the "How could I find out the path to the current desktop image ?" part.

      – Hennes
      Aug 29 '16 at 12:07











    • Please read the question again carefully. Your answer does not answer the original question.

      – DavidPostill
      Aug 29 '16 at 17:59











    • Worked for me on Windows 10, thanks! You can then try using "Google Search by Image" to find the original source.

      – intrepidis
      Jan 14 '17 at 11:35





















    0














    BioniX Background Wallpaper Changer might be your answer:





    1. how can I always display on the screen the image path/filename?




    Bionix can show the name of the current wallpaper.
    But you have to activate "Show wallpaper name on desktop" in Settings:



    enter image description here





    1. there is one I really want to see again




    Bionix can take you back to any previous image what you had as desktop background (just press the "Previous wallpapers" button):
    enter image description here



    It can also do the third thing - that you haven't requested but I guess you might need it. It can help you with the image management. For example you can delete (Recycle Bin) with a single click an wallpaper that you don't like, as soon as you see it on your desktop.






    share|improve this answer

































      0














      Windows wallpaper images live in C:WindowsWebWallpapers and you need to give Administrator permission to add, delete or move images.






      share|improve this answer























        Your Answer








        StackExchange.ready(function() {
        var channelOptions = {
        tags: "".split(" "),
        id: "3"
        };
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function() {
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled) {
        StackExchange.using("snippets", function() {
        createEditor();
        });
        }
        else {
        createEditor();
        }
        });

        function createEditor() {
        StackExchange.prepareEditor({
        heartbeatType: 'answer',
        autoActivateHeartbeat: false,
        convertImagesToLinks: true,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: 10,
        bindNavPrevention: true,
        postfix: "",
        imageUploader: {
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        },
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        });


        }
        });














        draft saved

        draft discarded


















        StackExchange.ready(
        function () {
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f244924%2fhow-could-i-find-out-the-path-to-the-current-desktop-image%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        6 Answers
        6






        active

        oldest

        votes








        6 Answers
        6






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        25














        I am not sure if this works on every version of Windows 7 but on my Windows 7 Ultimate 64-bit it does. I also did not test this out when changing themes. If I manually changed the background picture or select a folder of pictures to slideshow through then the registry value that I query below seems to always be updated with the path to the current image.



        There are several ways to make this better (like automatically opening Windows Explorer to the folder the picture is in or launching the picture directly) but this could get you started.



        I created a batch file on my Desktop named path2pic.bat and had the following code in there:



        @echo off

        echo.

        echo The path to the current Desktop background image is:

        echo.
        echo.

        REG QUERY "HKCUSoftwareMicrosoftInternet ExplorerDesktopGeneral" /v WallpaperSource

        echo.
        echo.

        pause

        exit


        Then I created a shortcut to the batch file, assigned a Shortcut Key like Ctrl+Shift+P to it, and any time I want to know the path to the image I press the Shortkut Keys and the batch file shows me the path.






        share|improve this answer


























        • Great, well done! I'd just remove the final exit call, so to keep the console open. In the likely scenario where wallpaper changes from time to time, if you inadvertently press a key and then wallpaper changes, the info is lost.

          – superjos
          Jun 10 '12 at 10:09











        • A while back I posed the same question for Windows 8 after migrating to it. There's a different answer so worth taking into consideration: superuser.com/questions/507571/…

          – Scott Bennett-McLeish
          Mar 19 '13 at 0:31











        • If I remove @echo off it works. Windows 7 ultimate.

          – Olivier Pons
          Oct 31 '13 at 8:33











        • This trick does Not work anymore. It always says WallpaperSource REG_SZ C:WINDOWSwebwallpaperWindowsimg0.jpg

          – thenonhacker
          Feb 24 '15 at 9:09













        • @thenonhacker it still works for me, I'm on Windows 7.

          – Marv
          Jun 28 '15 at 2:09
















        25














        I am not sure if this works on every version of Windows 7 but on my Windows 7 Ultimate 64-bit it does. I also did not test this out when changing themes. If I manually changed the background picture or select a folder of pictures to slideshow through then the registry value that I query below seems to always be updated with the path to the current image.



        There are several ways to make this better (like automatically opening Windows Explorer to the folder the picture is in or launching the picture directly) but this could get you started.



        I created a batch file on my Desktop named path2pic.bat and had the following code in there:



        @echo off

        echo.

        echo The path to the current Desktop background image is:

        echo.
        echo.

        REG QUERY "HKCUSoftwareMicrosoftInternet ExplorerDesktopGeneral" /v WallpaperSource

        echo.
        echo.

        pause

        exit


        Then I created a shortcut to the batch file, assigned a Shortcut Key like Ctrl+Shift+P to it, and any time I want to know the path to the image I press the Shortkut Keys and the batch file shows me the path.






        share|improve this answer


























        • Great, well done! I'd just remove the final exit call, so to keep the console open. In the likely scenario where wallpaper changes from time to time, if you inadvertently press a key and then wallpaper changes, the info is lost.

          – superjos
          Jun 10 '12 at 10:09











        • A while back I posed the same question for Windows 8 after migrating to it. There's a different answer so worth taking into consideration: superuser.com/questions/507571/…

          – Scott Bennett-McLeish
          Mar 19 '13 at 0:31











        • If I remove @echo off it works. Windows 7 ultimate.

          – Olivier Pons
          Oct 31 '13 at 8:33











        • This trick does Not work anymore. It always says WallpaperSource REG_SZ C:WINDOWSwebwallpaperWindowsimg0.jpg

          – thenonhacker
          Feb 24 '15 at 9:09













        • @thenonhacker it still works for me, I'm on Windows 7.

          – Marv
          Jun 28 '15 at 2:09














        25












        25








        25







        I am not sure if this works on every version of Windows 7 but on my Windows 7 Ultimate 64-bit it does. I also did not test this out when changing themes. If I manually changed the background picture or select a folder of pictures to slideshow through then the registry value that I query below seems to always be updated with the path to the current image.



        There are several ways to make this better (like automatically opening Windows Explorer to the folder the picture is in or launching the picture directly) but this could get you started.



        I created a batch file on my Desktop named path2pic.bat and had the following code in there:



        @echo off

        echo.

        echo The path to the current Desktop background image is:

        echo.
        echo.

        REG QUERY "HKCUSoftwareMicrosoftInternet ExplorerDesktopGeneral" /v WallpaperSource

        echo.
        echo.

        pause

        exit


        Then I created a shortcut to the batch file, assigned a Shortcut Key like Ctrl+Shift+P to it, and any time I want to know the path to the image I press the Shortkut Keys and the batch file shows me the path.






        share|improve this answer















        I am not sure if this works on every version of Windows 7 but on my Windows 7 Ultimate 64-bit it does. I also did not test this out when changing themes. If I manually changed the background picture or select a folder of pictures to slideshow through then the registry value that I query below seems to always be updated with the path to the current image.



        There are several ways to make this better (like automatically opening Windows Explorer to the folder the picture is in or launching the picture directly) but this could get you started.



        I created a batch file on my Desktop named path2pic.bat and had the following code in there:



        @echo off

        echo.

        echo The path to the current Desktop background image is:

        echo.
        echo.

        REG QUERY "HKCUSoftwareMicrosoftInternet ExplorerDesktopGeneral" /v WallpaperSource

        echo.
        echo.

        pause

        exit


        Then I created a shortcut to the batch file, assigned a Shortcut Key like Ctrl+Shift+P to it, and any time I want to know the path to the image I press the Shortkut Keys and the batch file shows me the path.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited May 30 '11 at 22:54

























        answered Feb 12 '11 at 21:45









        KerryKerry

        71158




        71158













        • Great, well done! I'd just remove the final exit call, so to keep the console open. In the likely scenario where wallpaper changes from time to time, if you inadvertently press a key and then wallpaper changes, the info is lost.

          – superjos
          Jun 10 '12 at 10:09











        • A while back I posed the same question for Windows 8 after migrating to it. There's a different answer so worth taking into consideration: superuser.com/questions/507571/…

          – Scott Bennett-McLeish
          Mar 19 '13 at 0:31











        • If I remove @echo off it works. Windows 7 ultimate.

          – Olivier Pons
          Oct 31 '13 at 8:33











        • This trick does Not work anymore. It always says WallpaperSource REG_SZ C:WINDOWSwebwallpaperWindowsimg0.jpg

          – thenonhacker
          Feb 24 '15 at 9:09













        • @thenonhacker it still works for me, I'm on Windows 7.

          – Marv
          Jun 28 '15 at 2:09



















        • Great, well done! I'd just remove the final exit call, so to keep the console open. In the likely scenario where wallpaper changes from time to time, if you inadvertently press a key and then wallpaper changes, the info is lost.

          – superjos
          Jun 10 '12 at 10:09











        • A while back I posed the same question for Windows 8 after migrating to it. There's a different answer so worth taking into consideration: superuser.com/questions/507571/…

          – Scott Bennett-McLeish
          Mar 19 '13 at 0:31











        • If I remove @echo off it works. Windows 7 ultimate.

          – Olivier Pons
          Oct 31 '13 at 8:33











        • This trick does Not work anymore. It always says WallpaperSource REG_SZ C:WINDOWSwebwallpaperWindowsimg0.jpg

          – thenonhacker
          Feb 24 '15 at 9:09













        • @thenonhacker it still works for me, I'm on Windows 7.

          – Marv
          Jun 28 '15 at 2:09

















        Great, well done! I'd just remove the final exit call, so to keep the console open. In the likely scenario where wallpaper changes from time to time, if you inadvertently press a key and then wallpaper changes, the info is lost.

        – superjos
        Jun 10 '12 at 10:09





        Great, well done! I'd just remove the final exit call, so to keep the console open. In the likely scenario where wallpaper changes from time to time, if you inadvertently press a key and then wallpaper changes, the info is lost.

        – superjos
        Jun 10 '12 at 10:09













        A while back I posed the same question for Windows 8 after migrating to it. There's a different answer so worth taking into consideration: superuser.com/questions/507571/…

        – Scott Bennett-McLeish
        Mar 19 '13 at 0:31





        A while back I posed the same question for Windows 8 after migrating to it. There's a different answer so worth taking into consideration: superuser.com/questions/507571/…

        – Scott Bennett-McLeish
        Mar 19 '13 at 0:31













        If I remove @echo off it works. Windows 7 ultimate.

        – Olivier Pons
        Oct 31 '13 at 8:33





        If I remove @echo off it works. Windows 7 ultimate.

        – Olivier Pons
        Oct 31 '13 at 8:33













        This trick does Not work anymore. It always says WallpaperSource REG_SZ C:WINDOWSwebwallpaperWindowsimg0.jpg

        – thenonhacker
        Feb 24 '15 at 9:09







        This trick does Not work anymore. It always says WallpaperSource REG_SZ C:WINDOWSwebwallpaperWindowsimg0.jpg

        – thenonhacker
        Feb 24 '15 at 9:09















        @thenonhacker it still works for me, I'm on Windows 7.

        – Marv
        Jun 28 '15 at 2:09





        @thenonhacker it still works for me, I'm on Windows 7.

        – Marv
        Jun 28 '15 at 2:09













        12














        The path to the current Wallpaper is located in the following register key:



        HKEY_CURRENT_USERControl PanelDesktopWallpaper 


        Open the start menu and in the search box, type "regedit". Navigate to the above key throught the registry explorer on the left. When you single click the "Desktop" folder, at the right, a list with keys will be displayed. Look for the one that's titled "Wallpaper". The value will be the location of the current wallpaper.






        share|improve this answer
























        • Not working in Win 10. Gives the path to a "Transcoded" Wallpaper!

          – ps95
          Oct 12 '16 at 19:48
















        12














        The path to the current Wallpaper is located in the following register key:



        HKEY_CURRENT_USERControl PanelDesktopWallpaper 


        Open the start menu and in the search box, type "regedit". Navigate to the above key throught the registry explorer on the left. When you single click the "Desktop" folder, at the right, a list with keys will be displayed. Look for the one that's titled "Wallpaper". The value will be the location of the current wallpaper.






        share|improve this answer
























        • Not working in Win 10. Gives the path to a "Transcoded" Wallpaper!

          – ps95
          Oct 12 '16 at 19:48














        12












        12








        12







        The path to the current Wallpaper is located in the following register key:



        HKEY_CURRENT_USERControl PanelDesktopWallpaper 


        Open the start menu and in the search box, type "regedit". Navigate to the above key throught the registry explorer on the left. When you single click the "Desktop" folder, at the right, a list with keys will be displayed. Look for the one that's titled "Wallpaper". The value will be the location of the current wallpaper.






        share|improve this answer













        The path to the current Wallpaper is located in the following register key:



        HKEY_CURRENT_USERControl PanelDesktopWallpaper 


        Open the start menu and in the search box, type "regedit". Navigate to the above key throught the registry explorer on the left. When you single click the "Desktop" folder, at the right, a list with keys will be displayed. Look for the one that's titled "Wallpaper". The value will be the location of the current wallpaper.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Feb 12 '11 at 21:50









        BloodPhiliaBloodPhilia

        24.5k1473104




        24.5k1473104













        • Not working in Win 10. Gives the path to a "Transcoded" Wallpaper!

          – ps95
          Oct 12 '16 at 19:48



















        • Not working in Win 10. Gives the path to a "Transcoded" Wallpaper!

          – ps95
          Oct 12 '16 at 19:48

















        Not working in Win 10. Gives the path to a "Transcoded" Wallpaper!

        – ps95
        Oct 12 '16 at 19:48





        Not working in Win 10. Gives the path to a "Transcoded" Wallpaper!

        – ps95
        Oct 12 '16 at 19:48











        4














        Here's a solution that locates the current wallpaper and show it in Windows Explorer:



        How to Add “Desktop Background File Location” Option to Desktop Right-Click Menu in Windows 7
        http://www.winhelponline.com/blog/desktop-background-file-location-right-click-menu-windows-7/



        enter image description here



        enter image description here






        share|improve this answer




























          4














          Here's a solution that locates the current wallpaper and show it in Windows Explorer:



          How to Add “Desktop Background File Location” Option to Desktop Right-Click Menu in Windows 7
          http://www.winhelponline.com/blog/desktop-background-file-location-right-click-menu-windows-7/



          enter image description here



          enter image description here






          share|improve this answer


























            4












            4








            4







            Here's a solution that locates the current wallpaper and show it in Windows Explorer:



            How to Add “Desktop Background File Location” Option to Desktop Right-Click Menu in Windows 7
            http://www.winhelponline.com/blog/desktop-background-file-location-right-click-menu-windows-7/



            enter image description here



            enter image description here






            share|improve this answer













            Here's a solution that locates the current wallpaper and show it in Windows Explorer:



            How to Add “Desktop Background File Location” Option to Desktop Right-Click Menu in Windows 7
            http://www.winhelponline.com/blog/desktop-background-file-location-right-click-menu-windows-7/



            enter image description here



            enter image description here







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Mar 18 '13 at 11:00









            thenonhackerthenonhacker

            323216




            323216























                2














                copy "C:UserstestAppDataRoamingMicrosoftWindowsThemesTranscodedWallpaper" to image.jpg



                'test' is your user name,
                image.jpg is the current image in the slide.






                share|improve this answer
























                • That might save the image, but it does not answert the "How could I find out the path to the current desktop image ?" part.

                  – Hennes
                  Aug 29 '16 at 12:07











                • Please read the question again carefully. Your answer does not answer the original question.

                  – DavidPostill
                  Aug 29 '16 at 17:59











                • Worked for me on Windows 10, thanks! You can then try using "Google Search by Image" to find the original source.

                  – intrepidis
                  Jan 14 '17 at 11:35


















                2














                copy "C:UserstestAppDataRoamingMicrosoftWindowsThemesTranscodedWallpaper" to image.jpg



                'test' is your user name,
                image.jpg is the current image in the slide.






                share|improve this answer
























                • That might save the image, but it does not answert the "How could I find out the path to the current desktop image ?" part.

                  – Hennes
                  Aug 29 '16 at 12:07











                • Please read the question again carefully. Your answer does not answer the original question.

                  – DavidPostill
                  Aug 29 '16 at 17:59











                • Worked for me on Windows 10, thanks! You can then try using "Google Search by Image" to find the original source.

                  – intrepidis
                  Jan 14 '17 at 11:35
















                2












                2








                2







                copy "C:UserstestAppDataRoamingMicrosoftWindowsThemesTranscodedWallpaper" to image.jpg



                'test' is your user name,
                image.jpg is the current image in the slide.






                share|improve this answer













                copy "C:UserstestAppDataRoamingMicrosoftWindowsThemesTranscodedWallpaper" to image.jpg



                'test' is your user name,
                image.jpg is the current image in the slide.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Aug 29 '16 at 10:18









                RubenRuben

                213




                213













                • That might save the image, but it does not answert the "How could I find out the path to the current desktop image ?" part.

                  – Hennes
                  Aug 29 '16 at 12:07











                • Please read the question again carefully. Your answer does not answer the original question.

                  – DavidPostill
                  Aug 29 '16 at 17:59











                • Worked for me on Windows 10, thanks! You can then try using "Google Search by Image" to find the original source.

                  – intrepidis
                  Jan 14 '17 at 11:35





















                • That might save the image, but it does not answert the "How could I find out the path to the current desktop image ?" part.

                  – Hennes
                  Aug 29 '16 at 12:07











                • Please read the question again carefully. Your answer does not answer the original question.

                  – DavidPostill
                  Aug 29 '16 at 17:59











                • Worked for me on Windows 10, thanks! You can then try using "Google Search by Image" to find the original source.

                  – intrepidis
                  Jan 14 '17 at 11:35



















                That might save the image, but it does not answert the "How could I find out the path to the current desktop image ?" part.

                – Hennes
                Aug 29 '16 at 12:07





                That might save the image, but it does not answert the "How could I find out the path to the current desktop image ?" part.

                – Hennes
                Aug 29 '16 at 12:07













                Please read the question again carefully. Your answer does not answer the original question.

                – DavidPostill
                Aug 29 '16 at 17:59





                Please read the question again carefully. Your answer does not answer the original question.

                – DavidPostill
                Aug 29 '16 at 17:59













                Worked for me on Windows 10, thanks! You can then try using "Google Search by Image" to find the original source.

                – intrepidis
                Jan 14 '17 at 11:35







                Worked for me on Windows 10, thanks! You can then try using "Google Search by Image" to find the original source.

                – intrepidis
                Jan 14 '17 at 11:35













                0














                BioniX Background Wallpaper Changer might be your answer:





                1. how can I always display on the screen the image path/filename?




                Bionix can show the name of the current wallpaper.
                But you have to activate "Show wallpaper name on desktop" in Settings:



                enter image description here





                1. there is one I really want to see again




                Bionix can take you back to any previous image what you had as desktop background (just press the "Previous wallpapers" button):
                enter image description here



                It can also do the third thing - that you haven't requested but I guess you might need it. It can help you with the image management. For example you can delete (Recycle Bin) with a single click an wallpaper that you don't like, as soon as you see it on your desktop.






                share|improve this answer






























                  0














                  BioniX Background Wallpaper Changer might be your answer:





                  1. how can I always display on the screen the image path/filename?




                  Bionix can show the name of the current wallpaper.
                  But you have to activate "Show wallpaper name on desktop" in Settings:



                  enter image description here





                  1. there is one I really want to see again




                  Bionix can take you back to any previous image what you had as desktop background (just press the "Previous wallpapers" button):
                  enter image description here



                  It can also do the third thing - that you haven't requested but I guess you might need it. It can help you with the image management. For example you can delete (Recycle Bin) with a single click an wallpaper that you don't like, as soon as you see it on your desktop.






                  share|improve this answer




























                    0












                    0








                    0







                    BioniX Background Wallpaper Changer might be your answer:





                    1. how can I always display on the screen the image path/filename?




                    Bionix can show the name of the current wallpaper.
                    But you have to activate "Show wallpaper name on desktop" in Settings:



                    enter image description here





                    1. there is one I really want to see again




                    Bionix can take you back to any previous image what you had as desktop background (just press the "Previous wallpapers" button):
                    enter image description here



                    It can also do the third thing - that you haven't requested but I guess you might need it. It can help you with the image management. For example you can delete (Recycle Bin) with a single click an wallpaper that you don't like, as soon as you see it on your desktop.






                    share|improve this answer















                    BioniX Background Wallpaper Changer might be your answer:





                    1. how can I always display on the screen the image path/filename?




                    Bionix can show the name of the current wallpaper.
                    But you have to activate "Show wallpaper name on desktop" in Settings:



                    enter image description here





                    1. there is one I really want to see again




                    Bionix can take you back to any previous image what you had as desktop background (just press the "Previous wallpapers" button):
                    enter image description here



                    It can also do the third thing - that you haven't requested but I guess you might need it. It can help you with the image management. For example you can delete (Recycle Bin) with a single click an wallpaper that you don't like, as soon as you see it on your desktop.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Nov 29 '17 at 11:12

























                    answered Nov 29 '17 at 10:51









                    RigelRigel

                    1,01662142




                    1,01662142























                        0














                        Windows wallpaper images live in C:WindowsWebWallpapers and you need to give Administrator permission to add, delete or move images.






                        share|improve this answer




























                          0














                          Windows wallpaper images live in C:WindowsWebWallpapers and you need to give Administrator permission to add, delete or move images.






                          share|improve this answer


























                            0












                            0








                            0







                            Windows wallpaper images live in C:WindowsWebWallpapers and you need to give Administrator permission to add, delete or move images.






                            share|improve this answer













                            Windows wallpaper images live in C:WindowsWebWallpapers and you need to give Administrator permission to add, delete or move images.







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Jan 19 at 14:25









                            Keith GroverKeith Grover

                            1




                            1






























                                draft saved

                                draft discarded




















































                                Thanks for contributing an answer to Super User!


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid



                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.


                                To learn more, see our tips on writing great answers.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function () {
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f244924%2fhow-could-i-find-out-the-path-to-the-current-desktop-image%23new-answer', 'question_page');
                                }
                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                Plaza Victoria

                                Brian Clough

                                Cáceres