Browser & Application Troubleshooting

Key Takeaways

  • Browser slowness, pop-ups, redirects, and changed homepages usually trace to malicious **extensions / potentially unwanted programs (PUPs)** or a corrupt cache — disable extensions and clear cache before deeper fixes.
  • Always **install a browser from the official source** and watch for **rogue certificate warnings, redirection to invalid certificates, and untrusted root CAs** — never click through a certificate error on a public site.
  • Use **Compatibility Mode** (Properties → Compatibility) to run legacy apps on newer Windows; 64-bit Windows runs 32-bit apps from **C:\Program Files (x86)** but cannot run 16-bit apps.
  • Windows Update failures are commonly fixed by the **Update Troubleshooter**, clearing the **SoftwareDistribution** cache, freeing disk space, and running **DISM + sfc**.
  • Install failures map to clear causes: insufficient space, missing **administrator** rights, **32-bit vs 64-bit** mismatch, a missing **.NET / Visual C++ runtime**, or antivirus blocking the installer.
Last updated: June 2026

Browser Issues and Security Symptoms

The browser is the single most malware-exposed application on a PC, so CompTIA pairs browser troubleshooting tightly with security. The Core 2 objectives explicitly call out browser-related security alerts you must recognize.

SymptomLikely CauseFix
Slow / unresponsive browserToo many tabs, heavy or malicious extensions, low RAMClose tabs, disable extensions, restart browser
Constant pop-ups / redirectsAdware extension or hijacked settingsRemove suspicious extensions, reset settings, run antimalware
Homepage / default search changed and won't revertBrowser hijacker / PUPReset browser settings, remove PUP, scan
Certificate warning on a siteExpired/invalid cert, wrong PC date/time, or attackerVerify date/time; do not proceed on public sites
"Untrusted root CA" or unexpected certRogue or self-signed certificate, possible MITMInvestigate; accept only for known internal sites
Can't reach one specific siteDNS, firewall, or the site is downTry another browser, ipconfig /flushdns, check firewall

Named Exam Concepts: Browser Security Settings

  • Trusted vs. untrusted sources / certificates — only install browsers and extensions from the official vendor site; a download from a search-ad clone is a classic infection vector.
  • Invalid / expired certificate warnings — most often caused by the PC clock being wrong; fix the date/time first.
  • Pop-up blockers, password managers, and private/secure browsing are legitimate settings the exam expects you to configure rather than disable.

Browser Reset Ladder

  1. Clear browsing data — cache, cookies, history.
  2. Disable all extensions, then re-enable one at a time to find the offender.
  3. Reset settings to default (homepage, search engine, new tab).
  4. Reinstall the browser from the official site if a hijacker persists.
  5. Create a fresh browser profile if a corrupt profile is the cause.

Application Compatibility and Architecture

Compatibility Mode

When a legacy program built for an older Windows release misbehaves on Windows 10/11, use Compatibility Mode rather than downgrading the OS:

  1. Right-click the program's .exe (or shortcut) → Properties.
  2. Open the Compatibility tab.
  3. Check "Run this program in compatibility mode for:" and pick the target Windows version (for example, Windows 7).
  4. Optionally enable "Run this program as an administrator" for apps that expect elevation.
  5. Click Apply and test. The Program Compatibility Troubleshooter can auto-detect settings if you are unsure.

32-bit vs. 64-bit (x86 vs. x64)

FactDetail
64-bit Windows runsBoth 64-bit and 32-bit applications
32-bit Windows runs32-bit applications only (and is capped near 4 GB RAM)
64-bit app install pathC:\Program Files
32-bit app install pathC:\Program Files (x86) (the WoW64 subsystem)
16-bit legacy appsWill not run on 64-bit Windows

"This app can't run on your PC" frequently means an architecture mismatch — a 64-bit installer on 32-bit Windows, or an app whose minimum OS the machine does not meet. CompTIA also expects you to confirm the application's system requirements (RAM, CPU, free disk, dedicated GPU) before blaming the OS, and to know that some apps require OS-specific builds even across editions of Windows.

Windows Update and Installation Failures

Windows Update Repair

Update failures are common A+ scenario questions. Start with the built-in Windows Update Troubleshooter (Settings → System → Troubleshoot), note any error code, then escalate.

IssueFix
Update stuck downloadingRun the Troubleshooter; clear the SoftwareDistribution cache
Update fails repeatedlyRecord the error code, run DISM /RestoreHealth then sfc /scannow
Feature update failsFree disk space (a feature update needs roughly 20 GB+), disconnect non-essential peripherals
New driver issue after updateRoll back the driver in Device Manager, or use System Restore

Clearing the update cache (the canonical procedure):

  1. Open an administrator Command Prompt.
  2. net stop wuauserv — stop the Windows Update service.
  3. net stop bits — stop the Background Intelligent Transfer Service.
  4. Delete the contents of C:\Windows\SoftwareDistribution\Download.
  5. net start wuauserv then net start bits.
  6. Re-run Windows Update.

Application Installation Failures

ErrorCauseFix
"Not enough disk space"Full system driveRun Disk Cleanup, clear temp files
"Administrator privileges required"No elevationRight-click installer → Run as administrator
"This app can't run on your PC"32/64-bit or OS mismatchGet the correct architecture/build
Installer hangs or crashesConflict or AV blockClose apps, temporarily disable real-time AV, retry
"Another installation is in progress"msiexec lockWait, or restart Windows Installer service
Missing .NET or Visual C++ RedistributableAbsent runtimeInstall the required Microsoft runtime, then retry

Exam trap: Disabling antivirus to complete an install is acceptable only temporarily and only for a trusted installer — re-enable real-time protection immediately afterward. Permanently disabling AV is always the wrong answer.

Test Your Knowledge

A user's browser homepage and default search engine keep changing to an unfamiliar site and cannot be reset. What is the MOST likely cause?

A
B
C
D
Test Your Knowledge

On a 64-bit installation of Windows, where do 32-bit applications install by default, and what cannot run there?

A
B
C
D
Test Your Knowledge

Windows Update repeatedly fails to download and install patches. After running the Windows Update Troubleshooter without success, which step directly clears the download cache?

A
B
C
D
Test Your Knowledge

An installer fails with the message that administrator privileges are required. What is the correct fix?

A
B
C
D