How can I make a WIN 10 desktop shortcut open a link in Edge, even though Chrome is the default browser?

1

Chrome is set as the default browser on my Windows 10 computer. However, I want to create a shortcut on the desktop to YouTube.com that opens in Microsoft Edge. How can I do this?

Richard M.

Posted 2016-07-05T21:38:47.277

Reputation: 13

Just create a shortcut to Edge and set the home page to YouTube. – Ramhound – 2016-07-05T21:40:09.633

See How to open URL in Microsoft Edge from the command line?.

– dxiv – 2016-07-05T22:37:26.507

Answers

1

Create a new shortcut with the following Path:

C:\Windows\System32\cmd.exe /c start microsoft-edge:http://www.youtube.com

You can then change the icon by right clicking and going to the Shortcut tab. From there, click "Change Icon" and click browse. Then go to C:\Windows\SystemApps\Microsoft.MicrosoftEdge_8wekyb3d8bbwe and click MicrosoftEdge to get its Icon. Finally click OK on all open dialog boxes.

CConard96

Posted 2016-07-05T21:38:47.277

Reputation: 1 161

This worked great, thank you! If you happen to know of a way to hide the CMD window that briefly pops up, I'd love to know, but it's not a big deal. – Richard M. – 2016-07-06T02:23:25.983

Create a shortcut with the following target, leaving out the CMD.. and Start part:

microsoft-edge:http://www.youtube.com

And, if you want to add Edge to the right-click menu, this script might help.

Open .URL Files Using Different Browsers from the Right-Click Menu

– w32sh – 2016-07-10T14:50:21.587