Windows 10: Set Firefox as default when it does not show up in Settings?
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Darkness Approaches Looping
--
Chapters
00:00 Windows 10: Set Firefox As Default When It Does Not Show Up In Settings?
00:52 Answer 1 Score 5
01:33 Accepted Answer Score 9
02:36 Answer 3 Score 0
03:11 Answer 4 Score 0
03:51 Thank you
--
Full question
https://superuser.com/questions/1260879/...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows10 #firefox #browser
#avk47
ACCEPTED ANSWER
Score 9
I have the same issue on my PC, with Firefox not being listed in the Web browser section of the Default Apps part of Settings. However, you can still change Firefox to the default web handler from this screen; it just takes a few extra steps.
- From the Choose Default Apps screen, scroll all the way down to the bottom and click on Set defaults by app.
- In the following window (located at
Control Panel\All Control Panel Items\Default Programs\Set Default Programs
) choose Firefox from the list of programs. - At the bottom of the window, click on Set this program as default. This will select all options that Firefox would normally set if you clicked the Make Default button in FF before Windows 10.
- Alternatively, you can click Choose defaults for this program and select only the files/protocols you want Firefox to respond to.
For me, this sets Firefox as the default web browser for everything I want, though for some weird reason it still won't list it as an available option in the Web browser section.
ANSWER 2
Score 5
Using the portable version of Firefox, I was able to make it appear in the list of web browser choices found at Settings -> Apps -> Default apps.
Within Firefox itself, navigate to Tools -> Options -> General press Make Default...:
I found the same behaviour with an installed version of the Firefox-based PaleMoon browser, so I doubt if my use of portable Firefox has any effect on the solution, but Run5k was right to point out that I should have noted this.
Earlier versions of Firefox may have this setting elswhere (eg Options -> Advanced -> General).
ANSWER 3
Score 0
Windows 10 Pro 64-bit v.1903 and Firefox v.70.0.1 (64-bit)
How to add Firefox to the Settings - Default Apps - Web Browser - Choose an App window.
Uninstall Firefox and install Firefox worked for me.
I assume the update from v.1803 to v.1903 was where Firefox got lost. I don't know why it disappeared from the "Choose an App" window.
The accepted answer's Control Panel\All Control Panel Items\Default Programs\Set Default Programs
takes me to Settings - Default Apps
where Firefox does not exist at Web Browser - Choose an App
ANSWER 4
Score 0
You can set the default app on the Command Prompt with ftype
. (Be sure to run Command Prompt as Admin.)
First you need to know what the 'open command string' is. Normally, you can find this with out with the command assoc {.extension}
, but I'll give it to you for free: for .html
files, the string is htmlfile
.
Now run the ftype
command:
ftype htmlfile="%ProgramFiles%\Mozilla Firefox\firefox.exe" "%1"
Don't forget the %1
You're done. You should now be able to double-click an .html file in Windows Explorer, and it will open with Firefox.