Skip to main content

How to run Firefox after installing Windows 10 creators update

I updated my Windows machine to use creator update and among other surprises, Firefox suddenly stopped to run. It was shown in the Task Manager, but I didn't see anything in Taskbar and the browser wouldn't open.

Finally, I found the fix from the below link. This easy solution helped me to get the Firefox app running back again in no time.

[Fix] How to run Firefox after installing Windows 10 creators update

Here is the summary of needed steps -

1. On the Windows Explorer, go to address bar and type:

%appdata%\Mozilla

and press enter key.

This will take you to the Mozilla folder in AppData folder where additional data and information regarding user program settings and preferences are stored.

2. Once you are inside the Mozilla folder, head to the address bar again and click the “Roaming” word. Doing this will take you the the upper level directory which contains the Mozilla folder.

3. Once in the Roaming folder, go and delete the Mozilla folder.

Deleting the Mozilla folder with delete all your preferences for Mozilla Firefox. This includes all add-ons and any tweaks done for the browser. Therefore, after you deleted the Mozilla folder and ran Firefox, it will start as if your browser is freshly installed.

After you have done the steps above, you can go and start Firefox.

Thanks to the original blogger for posting this fix!

Comments

Popular posts from this blog

Solving PyCharm bug: "Python helpers are not copied yet..."

I have been using PyCharm Professional to run and debug Python code from my Windows machine to a remote Linux device. There are some other tools available for the same purpose (e.g. Python Tool for Visual Studio 2017). But in my opinion, PyCharm Professional stands out among its counterparts as it comes with a "All Batteries Included" setup. Once you configure remote Python interpreter in PyCharm, then it works out of the box. However, today after upgrading to PyCharm Professional 2018.2.1, I could not run my Python script on remote device. The execution always failed with below error - "Error running 'hello': Python helpers are not copied yet to the remote host. Please wait until remote interpreter initialization finishes." To solve this issue, I had to remove the ".pycharm_helpers " folder from the remove device and then restart PyCharm so that the folder is re-created and files are copied again. Here are the steps with comma...

Customized Crosshair with OxyPlot charting library

I am using Oxyplot to draw heatmap for a WPF project and needed to draw a crosshair that moves according to user clicks. Since I couldn't find any good example or documentation on the topic, I made a small hack by using LineAnnotations and by over-riding Oxyplot mouse click event. Here is the sample code using WPF with MVVM pattern- MainWindow.xaml <Grid>         <oxy:Plot x:Name="CrossHairPlot">             <oxy:Plot.Axes>                 <oxy:LinearAxis Key="MyXAxis" Position="Bottom" IsZoomEnabled="False"/>                 <oxy:LinearAxis Key="MyYAxis" Position="Left" IsZoomEnabled="False"/>                 <oxy:LinearColorAxis Key="...

Fixing git error: "remote: Repository not found"

I was trying to modify one of my private repository in GitHub and ran into the below error - git clone https://github.com/<user>/DocTest.git Cloning into 'DocTest'... remote: Repository not found. fatal: repository 'https://github.com/<user>/DocTest.git/' not found After lot of trial and error attempts, I figured out that my Windows 10 PC had stored github user credentials, so it didn't let me clone a private repository which was not accessible to the saved user. This is how we can clear any saved cache - Open Control Panel from the Start Menu Select User Accounts Select "Manage your credentials" in the left hand menu Delete all user credentials related to Git or GitHub After doing that, the error was gone and I was able to clone the repositories.