Are you trying to open Google Chrome, Mozilla Firefox or Microsoft Edge, but the browser either does not start at all or closes immediately? Or does the page take forever to load and the tabs don't respond? This problem is familiar to many laptop users. Windows 10/11, and its causes may lie in both software failures and hardware failures.
In 80% of cases, browsers that don't work are the result of conflicts with antiviruses, damaged cache files, or system errors. Less often blamed viruses that block network connections by changing the hosts file, or hardware problems (for example, hard drive failure). In this article, we will analyze all possible scenarios - from basic checks to complex diagnostics that will help bring browsers back to life without reinstalling Windows.
1. Checking the basic reasons: Internet, running as administrator and program conflicts
Rule out obvious problems before digging deep. Start by checking your Internet connection: if the laptop is not connected to the network, browsers may open, but not load pages. Pay attention to the network icon in the tray - if there is an exclamation mark there, the problem is on the side of the router or provider.
Next, try launching your browser on behalf of administrator. To do this:
- 🔍 Find the browser shortcut (for example, Chrome) in the menu
Start. - 🖱️ Right click and select
Run as administrator. - 🔄 If the browser opens, the problem is in access rights to system files.
Also check if other software is blocking your browser. Common culprits:
- 🛡️ Antiviruses (Kaspersky, Avast, ESET NOD32), especially if they have been updated recently.
- 🔒 VPN clients (NordVPN, ProtonVPN), which can redirect traffic.
- 🎮 Programs for optimizing the game (Razer Cortex, MSI Afterburner).
⚠️ Attention: If the browser opens inincognito mode(for example, in Chrome throughCtrl+Shift+N), but does not work in normal mode - the problem is in the extensions or profile cache. More on this in the next section.
- Google Chrome
- Mozilla Firefox
- Microsoft Edge
- Opera
- Other
2. Clear cache, cookies and reset browser settings
Corrupt cache files or conflicting extensions are the most common cause of crashes. Each browser stores temporary data, which can become dirty over time and cause errors. Let's look at the cleaning process using an example Google Chrome (for other browsers the steps are similar):
- Open the browser menu (three dots in the upper right corner) →
Settings. - Go to section
Privacy and Security→Clear history. - Select period
For all timeand check the boxes:- 🗑️
Cookies and other site data - 🗃️
Cached images and files - 📝
Download log(optional)
- 🗑️
Delete data.If cleaning doesn't help, try reset browser settings:
- B Chrome go to
Settings → Advanced → Reset settings. - Click
Restore default settings.
For Firefox the path will be: Help → Troubleshooting → Clean Firefox.
☑️ Checklist before resetting the browser
⚠️ Attention: After the reset, all extensions will be disabled and the settings will return to factory settings. If the problem disappears, enable extensions one at a time to find the culprit.
3. Checking the hosts file and network settings
If browsers don't open no site, but at the same time Skype, Telegram or other programs work with the Internet - the problem may be in the file hosts. This file is responsible for mapping domain names to IP addresses, and viruses often modify it to block access to sites.
To check hosts:
- Open
Notepadon behalf of the administrator. - From the menu, select
File → Openand follow the path:C:\Windows\System32\drivers\etc\hosts - Make sure the file contains only standard lines (example below). If there are extraneous records (for example, with
127.0.0.1 facebook.com) - delete them.
| Standard hosts content | Description |
|---|---|
# Copyright (c) 1993-2009 Microsoft Corp. |
File title (comment) |
127.0.0.1 localhost |
Localhost (required line) |
::1 localhost |
IPv6 equivalent for localhost |
If the file has been changed, save it and restart the laptop. Also check your settings DNS servers:
- 🌐 Open
Control Panel → Network and Internet → Network and Sharing Center. - 🔧 Select your connection →
Properties → IP version 4 (TCP/IPv4). - 🔄 Check the box
Get DNS server automaticallyor write it manually8.8.8.8(Google DNS) and8.8.4.4.
netsh int ip reset
netsh winsock reset
Once completed, reboot your laptop.-->
4. Diagnosis of viruses and malware
Viruses and spyware often block browsers by redirecting traffic through proxies or modifying system files. If the previous steps did not help, follow full system check.
Use a combination of two tools:
- Built-in Windows Defender:
- 🛡️ Open
Settings → Update & Security → Windows Security. - 🔍 Select
Protection against viruses and threats → Quick scan(then repeat withFull check).
- 🛡️ Open
- Specialized utilities:
- 🛠️ Malwarebytes - download from the official website and scan the system.
- 🔬 AdwCleaner — removes adware that can block browsers.
- 🕵️ Kaspersky Virus Removal Tool — portable utility for one-time scanning.
Pay special attention to the following signs of infection:
- 🚫 Browsers redirect to unknown sites.
- 📥 Pop-up windows with advertisements appear even on an empty tab.
- 🔄 Your browser's home page has changed without your knowledge.
- 💻 B
Task ManagerUnknown processes are hanging with a high load on the CPU.
⚠️ Attention: If the antivirus finds threats in browser files (for example,chrome.exeorfirefox.exe), do not try to “cure” them - it is better to completely remove the browser and reinstall it from the official website.
5. Reinstalling and restoring browsers
If the browser is damaged at the system file level, reinstalling it may be the only solution. However, simple removal via Control panel often leaves “tails” in the registry and folders AppData. To remove the browser completely, follow the instructions:
For Google Chrome:
- Remove the browser via
Settings → Applications → Apps & features. - Delete the remaining folders:
C:\Users\<Ваше_имя_пользователя>\AppData\Local\Google\ChromeC:\Program Files\Google\Chrome
C:\Program Files (x86)\Google\Chrome - Clear the registry (if you are sure of your actions) of keys with
Google Chromeinregedit(path:HKEY_CURRENT_USER\Software\Google\Chrome). - Download the latest version from the official website google.com/chrome and install.
For other browsers the process is similar, only the paths will be different:
- 🦊 Firefox:
C:\Users\<Your_name>\AppData\Roaming\Mozilla\Firefox - 🅰️ Edge:
C:\Users\<Your_name>\AppData\Local\Microsoft\Edge
If after reinstalling the browser still does not work, try portable version (For example, Chrome Portable or Firefox Portable). It does not require installation and will help determine whether the problem is with the system or with a specific program.
How to Uninstall a Browser Using PowerShell (Advanced Users)
Open PowerShell as administrator and run the command to completely uninstall Chrome:
Get-AppxPackage *chrome* | Remove-AppxPackageRemove-Item -Recurse -Force "C:\Program Files\Google\Chrome"
Remove-Item -Recurse -Force "$env:LOCALAPPDATA\Google\Chrome"
You can similarly remove Edge or Firefox by replacing the paths.
6. Checking system files and Windows components
If neither browser works, the problem may lie in damaged system files Windows. To restore them, use the built-in utilities:
- System File Integrity Check (SFC):
sfc /scannowThe utility will scan the system and restore damaged files (may take 10-30 minutes).
- Windows Image Recovery (DISM):
DISM /Online /Cleanup-Image /RestoreHealthThis command restores damaged components from a Windows Update backup.
Also check if critical services are disabled:
- 🔧 Click
Win + R, enterservices.msc. - 🔍 Make sure the following services are running (status
In progress):DNS clientNetwork List ServiceWindows FirewallCryptography service
If after these steps the browsers still do not work, try create a new Windows user:
- Open
Settings → Accounts → Family and other users. - Add a new user (for example,
TestUser). - Log in with a new account and check your browsers.
⚠️ Attention: If browsers are running under a new account, the problem is in your user profile. In this case, it is easier to transfer data to a new profile than to try to restore the old one.
If system utilities (SFC/DISM) find errors but cannot fix them, there may be two reasons: the Windows recovery image is damaged or there is a problem at the hard drive level. In this case, only reinstalling the system or replacing the HDD/SSD will help.
7. Hardware problems: hard drive, RAM, overheating
If none of the software methods worked, it’s worth checking hardware laptop. The most common culprits are:
- 💾 Faulty hard drive (HDD) or SSD:
- Check disk health using CrystalDiskInfo (if status
BadorAnxiety— the disk needs to be replaced). - Run surface test at Victoria HDD or HD Tune.
- Check disk health using CrystalDiskInfo (if status
- 🔥 Overheating of the processor or video card:
- Install HWMonitor and check temperatures under load (normal: up to 80°C for CPU, up to 70°C for GPU).
- If temperatures are above 90°C, clean the laptop from dust or replace the thermal paste.
- 🧠 Faulty random access memory (RAM):
- Run
Windows Memory Checker(entermdsched.exeinExecute). - Or use MemTest86 for in-depth diagnostics.
- Run
Also pay attention to the following symptoms:
- 🖥️Laptop turns off randomly when trying to open the browser - a sign of power problems or overheating.
- 🐢 Browsers opens but slows down even on simple sites, there may be a lack of RAM or disk problems.
- 🔌 Extraneous sounds (clicks, squeaks) from a laptop - may indicate HDD failure.
If diagnostics reveal hardware problems, further actions depend on the specific malfunction:
- 🔧 HDD/SSD: Replace the drive and reinstall Windows.
- 🧊 Overheating: Clean the cooling system or contact a service center.
- 🔄 RAM: Try rearranging the memory sticks or replacing them.
FAQ: Frequently asked questions about browsers not working
❓ The browser opens, but does not load pages. What's the matter?
There may be several reasons:
- 🌐 Problems with DNS - try changing DNS to
8.8.8.8(Google) or1.1.1.1(Cloudflare). - 🛡️ Antivirus or firewall is blocking the connection - temporarily disable them.
- 📡 Problems on the provider’s side - check if the sites work on the phone (via mobile Internet).
- 🔧 Corrupted proxy settings - open
Settings → Network and Internet → Proxyand disable all options.
❓ After updating Windows, browsers stopped working. What to do?
Windows updates sometimes reset settings or conflict with drivers. Try:
- Roll back the system to a restore point (
Control Panel → Recovery → Run System Restore). - Update your network card and video card drivers via Device Manager.
- Reinstall your browsers (as described in section 5).
- Check the Windows update history (
Settings → Update & Security → View update history) and uninstall the problematic update.
❓ Browsers only work in incognito mode. Why?
This is a clear sign of a problem with extensions or profile cache. Do the following:
- Open your browser normally and go to
Settings → Extensions. - Disable all extensions and restart your browser.
- If the problem disappears, enable extensions one at a time to find the culprit.
- If that doesn't help, create a new browser profile (in Chrome this can be done via
chrome://flags/#enable-new-profile-management).
Also check the folder AppData for the presence of damaged files (paths are indicated in section 5).
❓ All browsers except Edge do not work on the laptop. What is the reason?
Microsoft Edge uses the engine Chromium, but is integrated deeper into Windows than other browsers. If only he (or Internet Explorer), the problem may be:
- 🔒 Group policies (relevant for corporate laptops) - check
gpedit.msc(if available). - 🛡️ Windows Firewall, which blocks all browsers except system ones.
- 📛 Damaged librarieswho use Chrome/Firefox, but do not affect Edge.
Solution:
- Reset your firewall settings (
Control Panel → Windows Firewall → Restore Defaults). - Run
sfc /scannowAndDISM(section 6). - Try installing the browser in a different folder (for example,
D:\Programs\Chrome).
❓ Is it possible to recover bookmarks and passwords if the browser does not open?
Yes, even if the browser does not start, you can extract the data manually:
For Google Chrome:
- 🔑 Passwords stored in a file
Login Dataalong the way:C:\Users\<Ваше_имя>\AppData\Local\Google\Chrome\User Data\Default\Login DataIt can be opened with DB Browser for SQLite or transfer to another browser.
- 📑 Bookmarks stored in a file
Bookmarks(in the same folder). This is a regular JSON file that can be opened in Notepad.
For Firefox:
- 📂 Profile is located in
C:\Users\<Your_name>\AppData\Roaming\Mozilla\Firefox\Profiles\. - 🔑 Passwords are exported via
about:logins(if the browser has been opened at least once).
You can also use utilities like Passware Password Recovery or NirSoft ChromePass to retrieve passwords.