30

I want to click an icon in Windows Explorer and have it open a specific web page with the default browser. How is this done?

I don't want to download the web page, I just want to access it via a shortcut in the file manager. My google searches haven't turned up anything.

wdkrnls
  • 1,534

8 Answers8

39
  1. Right click on the folder.
  2. New Shortcut.
  3. Insert the URL in the dialog, Next.
  4. Put a meaningful name.

Double click the shortcut to test it.

jcbermu
  • 17,822
20

This is actually much easier than you might think! If you are on the web page you want to save a link for, click and hold on the small icon just to the left of the address in the address bar. Drag it over into an open Windows Explorer window/folder (or over its icon, as you please) and let go. Drag and drop, job done :-)

19

Personally I found this answer best. Just create a file, myLink.html with the following content:

<html>
   <body>
      <script type="text/javascript">
    window.location.href = "http://stackoverflow.com"; //change this to the URL
                                                       //you want to redirect to
      </script>
   </body>
</html>
5

If you want to create the link programatically, save a file with content shown below, replace with actual URL, and name the file <something>.url to let Windows launch your default browser when the file is opened.

[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,11
[InternetShortcut]
IDList=
URL=https://superuser.com/questions/996482/how-do-i-save-a-link-to-a-webpage-as-a-shortcut-in-the-windows-file-manager/996484
k.c. sham
  • 151
1

In addition to what others have mentioned, you can access your current Favorites in Explorer by navigating to C:\users\%USERNAME%\favorites\ and then copy over any links you may already have bookmarked from there.

EDIT: I should clarify, this is the Internet Explorer Favorites location.

0

I was also wondering this same question, and when I found this page, none of these answers was what I was looking for (the first answer was the closest, but still way too tedious), so I decided to search some more. Happy to report I finally found what I believe to be the best option...

It's a Chrome extension called: "Save as Shortcut" (by mythofechelon.co.uk)

HTH!

0

The question was about saving a link on a webpage, which i understand to be a clickable link.

"Save as Shortcut" can save the link of the page being displayed, but not a link on the page. One would have to click on the link to have it rendered and then one would be able to save the currently displayed page link.

On Firefox post 57, there is an extension, "lcwmcfpon", that can do that, i.e. save the target of a link as shortcut in the Windows file manager. One uses the windows context menu on the link of interest.

Pre 57, there use to be one called "Deskcut", which could also save the target of a link being displayed on a web page, without having to actually render the page.

So that one does not have to constantly go back to some free desktop area to drag the link to (as chrome assumes to be the only user-friendly option). At this point, i am unaware of an equivalent extension for chrome.

dbdb
  • 1
0

Right click the link then use save link as at your browser and save. enter image description here

enter image description here

Jusup
  • 697